Skip to content

Commit 7dc3a8e

Browse files
committed
Use app auth.
1 parent a564288 commit 7dc3a8e

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/helm-chart.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,18 @@ jobs:
2121
release:
2222
runs-on: ubuntu-latest
2323
steps:
24+
- name: Generate token
25+
id: generate_token
26+
uses: actions/create-github-app-token@v2
27+
with:
28+
app-id: ${{ secrets.TEMPORAL_CICD_APP_ID }}
29+
private-key: ${{ secrets.TEMPORAL_CICD_PRIVATE_KEY }}
30+
owner: ${{ github.repository_owner }}
31+
2432
- name: Checkout
2533
uses: actions/checkout@v3
2634
with:
35+
token: ${{ steps.generate_token.outputs.token }}
2736
fetch-depth: 0
2837

2938
- name: Configure Git

0 commit comments

Comments
 (0)