From fbaa9aaa7cc1b0304c8d67e8a54b07d8fe9ee060 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Thu, 22 Jan 2026 16:22:38 -0500 Subject: [PATCH] Updating deploy.yml so it can accept multiple branches --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5b9fe955..a56d8081 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,8 +13,8 @@ on: # Manual trigger with optional branch override workflow_dispatch: inputs: - branch: - description: "Which branch should be built" + branches: + description: "Which branch should be built (can be a comma-separated list of branches)" required: true default: 'main' type: string @@ -23,7 +23,7 @@ jobs: deploy: uses: spring-cloud/spring-cloud-github-actions/.github/workflows/deploy.yml@main with: - branch: ${{ inputs.branch }} + branches: ${{ inputs.branches }} secrets: ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}