We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d8e6ad + f9b5773 commit 9271972Copy full SHA for 9271972
.github/workflows/release.lib.yaml
@@ -2,6 +2,11 @@ name: Versioned Release
2
3
on:
4
workflow_call:
5
+ inputs:
6
+ private-key:
7
+ description: 'Private key for creating the GitHub App token'
8
+ required: true
9
+ type: string
10
11
permissions:
12
contents: write # we need this to be able to push tags
@@ -18,7 +23,7 @@ jobs:
18
23
with:
19
24
# required
20
25
app-id: 1312871
21
- private-key: ${{ secrets.OPENMCP_CI_APP_PRIVATE_KEY }}
26
+ private-key: ${{ inputs.private-key }}
22
27
28
- name: Checkout code
29
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
0 commit comments