We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a564288 commit 7dc3a8eCopy full SHA for 7dc3a8e
1 file changed
.github/workflows/helm-chart.yaml
@@ -21,9 +21,18 @@ jobs:
21
release:
22
runs-on: ubuntu-latest
23
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
+
32
- name: Checkout
33
uses: actions/checkout@v3
34
with:
35
+ token: ${{ steps.generate_token.outputs.token }}
36
fetch-depth: 0
37
38
- name: Configure Git
0 commit comments