Skip to content

Commit 2c698c6

Browse files
authored
Update publish-frontend.yml
1 parent 8e37605 commit 2c698c6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/publish-frontend.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
needs: [npm-tests-lib, npm-tests-demo]
9090
defaults:
9191
run:
92-
working-directory: chartlets.js/packages/lib
92+
working-directory: chartlets.js
9393

9494
steps:
9595
- uses: actions/checkout@v4
@@ -102,8 +102,10 @@ jobs:
102102
cache: 'npm'
103103
cache-dependency-path: chartlets.js/package-lock.json
104104

105-
- run: npm ci
106-
- run: npm run build
107-
- run: npm publish --access public
105+
- run: |
106+
cd packages/lib
107+
npm ci
108+
npm run build
109+
npm publish --access public
108110
env:
109111
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)