Skip to content

Commit 9271972

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

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.lib.yaml

Lines changed: 6 additions & 1 deletion
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

0 commit comments

Comments
 (0)