Skip to content

Commit 16ba283

Browse files
authored
fix(release): switch back to npm publish (#243)
1 parent e39451f commit 16ba283

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,15 @@ jobs:
102102
cd packages/sync-engine
103103
pnpm version ${{ needs.release.outputs.new-release-version }} --no-git-tag-version
104104
105+
- uses: actions/setup-node@v6
106+
with:
107+
node-version-file: .nvmrc
108+
cache: pnpm
109+
105110
- name: Publish sync-engine to npm
106111
run: |
107112
cd packages/sync-engine
108113
pnpm install --frozen-lockfile
109114
pnpm run build
110115
pnpm pack
111-
pnpm publish --access public
116+
npm publish --access public

0 commit comments

Comments
 (0)