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 35a5700 commit d8dd07fCopy full SHA for d8dd07f
.github/workflows/publish.yml
@@ -18,14 +18,11 @@ jobs:
18
with:
19
node-version: "20"
20
cache: "npm"
21
+ registry-url: "https://registry.npmjs.org"
22
- name: git config
23
run: |
24
git config user.name "${GITHUB_ACTOR}"
25
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
26
- cat .npmrc
27
- env:
28
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
29
- name: Install dependencies
30
run: npm ci
31
- name: Run tests
@@ -34,6 +31,8 @@ jobs:
34
run: npx lerna run build:packages --since master
35
32
- name: Publish packages
36
33
run: npx lerna publish patch --yes
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37
38
rmw-shell-demo:
39
if: ${{ always() }}
0 commit comments