We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a15bc commit a4f4a27Copy full SHA for a4f4a27
.github/workflows/build-publish.yml
@@ -1,7 +1,7 @@
1
name: build-publish
2
permissions:
3
contents: write
4
- id-token: write
+ id-token: read
5
packages: write
6
7
on:
@@ -21,10 +21,14 @@ jobs:
21
# if: github.event.pull_request.merged == true
22
timeout-minutes: 20
23
steps:
24
+ - name: testing token
25
+ run: |
26
+ echo bot_token?: ${{ secrets.GH_PARSABLE_BOT_BYPASS == ''}}
27
+ echo bot_token?: ${{ secrets.GH_PAT_CLASSIC_MACHINE_PARSABLE == ''}}
28
- name: Checkout
29
uses: actions/checkout@v4
30
with:
- token: ${{secrets.GH_PAT_CLASSIC_MACHINE_PARSABLE}}
31
+ token: ${{ secrets.GH_PARSABLE_BOT_BYPASS }}
32
ref: GHA-publish
33
fetch-depth: 0
34
- name: Setup Node
0 commit comments