We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 951a934 commit fbaa9aaCopy full SHA for fbaa9aa
.github/workflows/deploy.yml
@@ -13,8 +13,8 @@ on:
13
# Manual trigger with optional branch override
14
workflow_dispatch:
15
inputs:
16
- branch:
17
- description: "Which branch should be built"
+ branches:
+ description: "Which branch should be built (can be a comma-separated list of branches)"
18
required: true
19
default: 'main'
20
type: string
@@ -23,7 +23,7 @@ jobs:
23
deploy:
24
uses: spring-cloud/spring-cloud-github-actions/.github/workflows/deploy.yml@main
25
with:
26
- branch: ${{ inputs.branch }}
+ branches: ${{ inputs.branches }}
27
secrets:
28
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
29
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
0 commit comments