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 785c02a commit 4670181Copy full SHA for 4670181
.github/workflows/publish.yml
@@ -3,7 +3,7 @@ name: Publish
3
on:
4
workflow_dispatch:
5
secrets:
6
- GITHUB_TOKEN:
+ GH_TOKEN:
7
required: true
8
NPM_TOKEN:
9
@@ -21,7 +21,7 @@ jobs:
21
- uses: actions/checkout@v4
22
with:
23
persist-credentials: false
24
- token: ${{ secrets.GITHUB_TOKEN }}
+ token: ${{ secrets.GH_TOKEN }}
25
26
# Workaround for corepack enable in node
27
# Source: (https://github.com/actions/setup-node/issues/899#issuecomment-1828798029)
@@ -47,7 +47,7 @@ jobs:
47
if: github.event.inputs.workspace == ''
48
run: yarn release
49
env:
50
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
51
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
52
53
- name: Update Apps
0 commit comments