We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0639353 commit 419de5fCopy full SHA for 419de5f
1 file changed
.github/workflows/release-rc.yml
@@ -31,7 +31,7 @@ jobs:
31
- uses: actions/checkout@v3
32
with:
33
ref: ${{ github.event.inputs.ref }}
34
- token: ${{ env.GITHUB_TOKEN }}
+ token: ${{ secrets.GITHUB_TOKEN }}
35
36
- name: Use Node.js ${{ matrix.node-version }}
37
uses: actions/setup-node@v3
@@ -69,7 +69,7 @@ jobs:
69
run: |
70
lerna publish --exact --preid rc-$(date +%s) --dist-tag rc --force-publish='*' --no-push --no-git-tag-version prepatch --ignore-prepublish --ignore-scripts --no-private -y
71
env:
72
- GH_TOKEN: ${{ env.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
74
75
- name: Adding markdown
0 commit comments