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 76d679a commit 5e9b625Copy full SHA for 5e9b625
.github/workflows/npm-publish.yml
@@ -23,9 +23,6 @@ jobs:
23
publish-npm:
24
needs: build
25
runs-on: ubuntu-latest
26
- defaults:
27
- run:
28
- working-directory: ./src
29
steps:
30
- uses: actions/checkout@v2
31
- uses: actions/setup-node@v2
@@ -34,8 +31,10 @@ jobs:
34
registry-url: https://registry.npmjs.org/
35
32
scope: '@ngu'
36
33
- run: npm install
37
- - run: npm run build
38
- - run: npm publish
+ - run: npm run build:lib
+ - name: Run Publish
+ working-directory: ./dist/ngu/carousel
+ run: npm publish --access=public
39
env:
40
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
41
0 commit comments