File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,20 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
name : " Release a new version"
17
17
steps :
18
+ - name : Get auth token
19
+ id : token
20
+ uses : actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
21
+ with :
22
+ app-id : ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
23
+ private-key : ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
18
24
- uses : actions/checkout@v3
19
25
with :
20
- token : ${{ secrets.GH_RELEASE_PAT }}
26
+ token : ${{ steps.token.outputs.token }}
21
27
fetch-depth : 0
22
28
- name : Prepare release
23
29
uses : getsentry/action-prepare-release@v1
24
30
env :
25
- GITHUB_TOKEN : ${{ secrets.GH_RELEASE_PAT }}
31
+ GITHUB_TOKEN : ${{ steps.token.outputs.token }}
26
32
with :
27
33
version : ${{ github.event.inputs.version }}
28
34
force : ${{ github.event.inputs.force }}
You can’t perform that action at this time.
0 commit comments