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.
1 parent 2f59d40 commit 6d8e6adCopy full SHA for 6d8e6ad
.github/workflows/publish.lib.yaml
@@ -2,6 +2,11 @@ name: Publish
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
packages: write
@@ -20,7 +25,7 @@ jobs:
20
25
with:
21
26
# required
22
27
app-id: 1312871
23
- private-key: ${{ secrets.OPENMCP_CI_APP_PRIVATE_KEY }}
28
+ private-key: ${{ inputs.private-key }}
24
29
30
- name: Checkout code
31
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
0 commit comments