We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94b7f7e + 532eab3 commit 0eac455Copy full SHA for 0eac455
2 files changed
.github/workflows/versioning.yml
@@ -19,10 +19,17 @@ jobs:
19
if: github.event.head_commit.message != 'Update package version'
20
21
steps:
22
+ - name: Generate GitHub App token
23
+ id: app-token
24
+ uses: actions/create-github-app-token@v1
25
+ with:
26
+ app-id: ${{ secrets.APP_ID }}
27
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
28
+
29
- name: Checkout repo
30
uses: actions/checkout@v4
31
with:
- token: ${{ secrets.GITHUB_TOKEN }}
32
+ token: ${{ steps.app-token.outputs.token }}
33
34
- name: Install uv
35
uses: astral-sh/setup-uv@v5
changelog.d/149.fixed.md
@@ -0,0 +1 @@
1
+Versioning workflow now creates GitHub Releases by using App token to trigger Phase 2.
0 commit comments