Skip to content

Commit 4b3d8c7

Browse files
committed
Merge branch 'main' into fix/priv-key
2 parents 6d8e6ad + f9b5773 commit 4b3d8c7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.lib.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Versioned Release
22

33
on:
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

611
permissions:
712
contents: write # we need this to be able to push tags
@@ -18,7 +23,7 @@ jobs:
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

0 commit comments

Comments
 (0)