We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d57dec9 commit deaf51cCopy full SHA for deaf51c
.github/workflows/release.yml
@@ -29,9 +29,20 @@ jobs:
29
runs-on: ubuntu-latest
30
permissions:
31
contents: write # to be able to publish a GitHub release
32
+ id-token: write # provenance
33
steps:
34
+ - name: Generate bot app token
35
+ id: generate_token
36
+ uses: actions/create-github-app-token@v1
37
+ with:
38
+ app-id: ${{ secrets.NGRX_APP_ID }}
39
+ private-key: ${{ secrets.NGRX_APP_PRIVATE_KEY }}
40
- name: Checkout
- uses: actions/checkout@v3
41
+ uses: actions/checkout@v4
42
43
+ token: ${{ steps.generate_token.outputs.token }}
44
+ fetch-depth: 0
45
+ persist-credentials: false
46
- name: Setup Node.js
47
uses: actions/setup-node@v3
48
with:
0 commit comments