Skip to content

Commit

Permalink
fix(ci): update build step command
Browse files Browse the repository at this point in the history
  • Loading branch information
clukhei committed Oct 23, 2023
1 parent f9789ed commit f6e738e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run test
- run: npm run build:lib
- run: npm run build
- run: npm publish --tag latest ./lib --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run test
- run: npm run build:lib
- run: npm run build
- run: npm publish --tag alpha ./lib
if: contains(env.NPM_TAG, 'alpha')
- run: npm publish --tag beta ./lib
Expand Down

0 comments on commit f6e738e

Please sign in to comment.