Skip to content

Commit

Permalink
Add "branch_name", "version" and "regorg" parameters to the
Browse files Browse the repository at this point in the history
"Publish Service Artifacts" workflow.

Signed-off-by: Alper Rifat Ulucinar <[email protected]>
  • Loading branch information
ulucinar committed Oct 12, 2023
1 parent d366f31 commit bf3da47
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/publish-service-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ on:
description: "Number of parallel package builds within each build job"
default: '1'
required: false
regorg:
description: 'Package registry and organization where the packages will be pushed or (e.g. xpkg.upbound.io/upbound)'
default: 'xpkg.upbound.io/upbound'
required: false
branch_name:
description: "Branch name to use while publishing the packages (e.g. main)"
default: ''
required: false
version:
description: "Version string to use while publishing the packages (e.g. v1.0.0-alpha.1)"
default: ''
required: false

jobs:
publish-service-artifacts:
Expand All @@ -23,6 +35,9 @@ jobs:
subpackages: ${{ github.event.inputs.subpackages }}
size: ${{ github.event.inputs.size }}
concurrency: ${{ github.event.inputs.concurrency }}
regorg: ${{ github.event.inputs.regorg }}
branch_name: ${{ github.event.inputs.branch_name }}
version: ${{ github.event.inputs.version }}
secrets:
UPBOUND_MARKETPLACE_PUSH_ROBOT_USR: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_USR_RC }}
UPBOUND_MARKETPLACE_PUSH_ROBOT_PSW: ${{ secrets.UPBOUND_MARKETPLACE_PUSH_ROBOT_PSW_RC }}

0 comments on commit bf3da47

Please sign in to comment.