We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a1128 commit 5fcc8c7Copy full SHA for 5fcc8c7
1 file changed
.github/workflows/release.yml
@@ -55,12 +55,19 @@ jobs:
55
echo "target_branch=${TARGET}" >> $GITHUB_OUTPUT
56
echo "Target branch: $TARGET"
57
58
+ - name: Generate GitHub App Token
59
+ id: generate_token
60
+ uses: actions/create-github-app-token@v1
61
+ with:
62
+ app-id: ${{ secrets.APP_ID }}
63
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
64
+
65
- name: Checkout repository
66
uses: actions/checkout@v3
67
with:
68
ref: ${{ steps.target_branch.outputs.target_branch }}
69
fetch-depth: 0
- token: ${{ secrets.GITHUB_TOKEN }}
70
+ token: ${{ steps.generate_token.outputs.token }}
71
72
- name: Delete user-created tag
73
run: |
0 commit comments