Skip to content

Commit 4670181

Browse files
authored
Update publish.yml
1 parent 785c02a commit 4670181

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish
33
on:
44
workflow_dispatch:
55
secrets:
6-
GITHUB_TOKEN:
6+
GH_TOKEN:
77
required: true
88
NPM_TOKEN:
99
required: true
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
with:
2323
persist-credentials: false
24-
token: ${{ secrets.GITHUB_TOKEN }}
24+
token: ${{ secrets.GH_TOKEN }}
2525

2626
# Workaround for corepack enable in node
2727
# Source: (https://github.com/actions/setup-node/issues/899#issuecomment-1828798029)
@@ -47,7 +47,7 @@ jobs:
4747
if: github.event.inputs.workspace == ''
4848
run: yarn release
4949
env:
50-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
5151
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5252

5353
- name: Update Apps

0 commit comments

Comments
 (0)