File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ name: Versioned Release
22
33on :
44 workflow_call :
5+ inputs :
6+ private-key :
7+ description : ' Private key for creating the GitHub App token'
8+ required : true
9+ type : string
510
611permissions :
712 contents : write # we need this to be able to push tags
1823 with :
1924 # required
2025 app-id : 1312871
21- private-key : ${{ secrets.OPENMCP_CI_APP_PRIVATE_KEY }}
26+ private-key : ${{ inputs.private-key }}
2227
2328 - name : Checkout code
2429 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -146,5 +151,5 @@ jobs:
146151 git config user.name "${{ env.AUTHOR_NAME }}"
147152 git config user.email "${{ env.AUTHOR_EMAIL }}"
148153 git add VERSION
149- git commit -m "chore(release): Update VERSION to ${{ env.version }}-dev"
154+ git commit -m "Update VERSION to ${{ env.version }}-dev"
150155 git push origin main
You can’t perform that action at this time.
0 commit comments