Skip to content

Commit 22e3f1e

Browse files
committed
chore: Fixed workflow script for publish accidentally calling publish twice.
1 parent 659e807 commit 22e3f1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: changesets
2525
uses: changesets/action@v1
2626
with:
27-
publish: bun run publish
27+
publish: bun run publish-ci
2828
env:
2929
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
"lint:types": "tsc --noEmit",
113113
"update-deps": "bunx npm-check-updates --format group --interactive",
114114
"ci": "bun run lint && bun run build",
115-
"publish": "bun run lint && bun run build && changeset publish"
115+
"publish-ci": "bun run lint && bun run build && changeset publish"
116116
},
117117
"sideEffects": false,
118118
"type": "module",

0 commit comments

Comments
 (0)