Skip to content

Commit

Permalink
release to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
q-nick committed Jan 22, 2023
1 parent d27b9c5 commit 037d120
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-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# build the project
- run: npm run build
# publish to NPM -> there is one caveat, continue reading for the fix
- run: npm publish --dry-run --tag beta
- run: npm publish --tag beta
env:
# Use a token to publish to NPM. See below for how to set it up
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# build the project
- run: npm run build
# publish to NPM -> there is one caveat, continue reading for the fix
- run: npm publish --dry-run --tag latest
- run: npm publish --tag latest
env:
# Use a token to publish to NPM. See below for how to set it up
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 037d120

Please sign in to comment.