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 9df4493 commit 9a7c850Copy full SHA for 9a7c850
.github/workflows/on-push.yml
@@ -4,7 +4,6 @@ on:
4
branches:
5
- '**' # matches every branch
6
- '!main'
7
-
8
jobs:
9
on_push:
10
runs-on: ubuntu-latest
.github/workflows/on-release.yml
@@ -19,15 +19,15 @@ jobs:
19
with:
20
node-version: '14'
21
22
+ - name: "Setup npm"
23
+ run: |
24
+ npm set "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}"
25
+
26
- name: Install packages
27
run: |
28
npm ci
29
npm run lerna-ci
30
- - name: "Setup npm"
- run: |
- npm set "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}"
31
- name: "Version and publish"
32
env:
33
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments