Skip to content

Commit

Permalink
chore: Fixed workflow script for publish accidentally calling publish…
Browse files Browse the repository at this point in the history
… twice.
  • Loading branch information
Blankeos committed Jan 17, 2025
1 parent 659e807 commit 22e3f1e
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: changesets
uses: changesets/action@v1
with:
publish: bun run publish
publish: bun run publish-ci
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"lint:types": "tsc --noEmit",
"update-deps": "bunx npm-check-updates --format group --interactive",
"ci": "bun run lint && bun run build",
"publish": "bun run lint && bun run build && changeset publish"
"publish-ci": "bun run lint && bun run build && changeset publish"
},
"sideEffects": false,
"type": "module",
Expand Down

0 comments on commit 22e3f1e

Please sign in to comment.