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 ff796f2 commit 604626fCopy full SHA for 604626f
.github/workflows/publish.yml
@@ -23,6 +23,11 @@ jobs:
23
run: |
24
git config user.name "${GITHUB_ACTOR}"
25
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
26
+ - name: "NPM Identity"
27
+ env:
28
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
29
+ run: |
30
+ echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
31
- name: Install dependencies
32
run: npm ci
33
- name: Run tests
@@ -31,8 +36,6 @@ jobs:
36
run: npx lerna run build:packages --since master
37
- name: Publish packages
38
run: npx lerna publish patch --yes
34
- env:
35
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
39
40
rmw-shell-demo:
41
if: ${{ always() }}
0 commit comments