Skip to content

Commit 3ec8016

Browse files
committed
Update bun publish step to install bun dependencies
1 parent ffbaee7 commit 3ec8016

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/npm-publish-cli.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,15 @@ jobs:
8686
with:
8787
bun-version: latest
8888

89+
- name: Install dependencies
90+
working-directory: ./libs/typescript/cua-cli
91+
run: bun install --frozen-lockfile
92+
8993
- name: Publish to npm
9094
working-directory: ./libs/typescript/cua-cli
9195
run: |
9296
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
93-
bun publish
97+
bun publish --tolerate-republish
9498
9599
create-release:
96100
needs: [build-and-publish, publish-npm]

0 commit comments

Comments
 (0)