We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e37605 commit 2c698c6Copy full SHA for 2c698c6
1 file changed
.github/workflows/publish-frontend.yml
@@ -89,7 +89,7 @@ jobs:
89
needs: [npm-tests-lib, npm-tests-demo]
90
defaults:
91
run:
92
- working-directory: chartlets.js/packages/lib
+ working-directory: chartlets.js
93
94
steps:
95
- uses: actions/checkout@v4
@@ -102,8 +102,10 @@ jobs:
102
cache: 'npm'
103
cache-dependency-path: chartlets.js/package-lock.json
104
105
- - run: npm ci
106
- - run: npm run build
107
- - run: npm publish --access public
+ - run: |
+ cd packages/lib
+ npm ci
108
+ npm run build
109
+ npm publish --access public
110
env:
111
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments