We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d467e7 commit eec1f33Copy full SHA for eec1f33
1 file changed
.github/workflows/release.yml
@@ -12,9 +12,19 @@ jobs:
12
release:
13
runs-on: ubuntu-latest
14
steps:
15
+
16
+ - name: Generate token
17
+ id: generate_token
18
+ uses: actions/create-github-app-token@v2
19
+ with:
20
+ app-id: ${{ secrets.TEMPORAL_CICD_APP_ID }}
21
+ private-key: ${{ secrets.TEMPORAL_CICD_PRIVATE_KEY }}
22
+ owner: ${{ github.repository_owner }}
23
24
- name: Checkout
25
uses: actions/checkout@v4
26
with:
27
+ token: ${{ steps.generate_token.outputs.token }}
28
fetch-depth: 0
29
30
- name: Set up Go
0 commit comments