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 db45fcc commit a1e5b1cCopy full SHA for a1e5b1c
.github/workflows/publish.yaml
@@ -17,10 +17,18 @@ jobs:
17
name: Release version
18
runs-on: ubuntu-24.04
19
steps:
20
+ - name: Create GitHub App token
21
+ uses: actions/create-github-app-token@v2
22
+ id: app-token
23
+ with:
24
+ # required
25
+ app-id: 1312871
26
+ private-key: ${{ secrets.OPENMCP_CI_APP_PRIVATE_KEY }}
27
+
28
- name: Checkout code
29
uses: actions/checkout@v4
30
with:
- ssh-key: ${{ secrets.PUSH_KEY }}
31
+ token: ${{ steps.app-token.outputs.token }}
32
fetch-tags: true
33
fetch-depth: 0
34
submodules: recursive
0 commit comments