We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 207469b commit cad7f4bCopy full SHA for cad7f4b
1 file changed
.github/workflows/nightly.yml
@@ -21,6 +21,10 @@ jobs:
21
run: yarn build
22
- name: Extract Version
23
run: echo "LIB_VERSION=$(cat package.json | jq -r .version)" >> $GITHUB_ENV
24
+ - name: Initialise NPM config
25
+ run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
26
+ env:
27
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28
- name: Publish Nightly Version
29
run: yarn release-it --ci --no-increment --no-git --no-plugins --npm.tag "nightly" ${{ env.LIB_VERSION }}-nightly-${{ github.sha }}
30
env:
0 commit comments