Skip to content

Commit

Permalink
Fixing broken publish command
Browse files Browse the repository at this point in the history
  • Loading branch information
liarco committed Dec 3, 2024
1 parent 70afbbc commit f5eba04
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-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:

- run: npm i
- run: npm run lint && npm run build
- run: npm version --no-git-tag-version --no-commit-hooks --new-version "0.0.0-experimental.${{ github.sha }}" && npm publish
- run: npm version --no-git-tag-version --commit-hooks false "0.0.0-experimental.${{ github.sha }}" && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:

- run: npm i
- run: npm run lint && npm run build
- run: npm publish
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit f5eba04

Please sign in to comment.