File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,23 @@ jobs:
1313 runs-on : ubuntu-latest
1414 name : ' Release a new version'
1515 steps :
16+ - name : Get auth token
17+ id : token
18+ uses : actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
19+ with :
20+ app-id : ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
21+ private-key : ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
1622 - uses : actions/checkout@v3
1723 with :
18- token : ${{ secrets.GH_RELEASE_PAT }}
24+ token : ${{ steps.token.outputs.token }}
1925 fetch-depth : 0
2026 - run : corepack enable
2127 - name : Install Dependencies
2228 run : yarn install
2329 - name : Prepare release
2430 uses : getsentry/action-prepare-release@v1
2531 env :
26- GITHUB_TOKEN : ${{ secrets.GH_RELEASE_PAT }}
32+ GITHUB_TOKEN : ${{ steps.token.outputs.token }}
2733 with :
2834 version : ${{ github.event.inputs.version }}
2935 force : ${{ github.event.inputs.force }}
You can’t perform that action at this time.
0 commit comments