Skip to content

Commit 7b0c47a

Browse files
committed
fix pipeline
1 parent 9d3ba9c commit 7b0c47a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@ jobs:
1616
- name: ⎔ Setup node
1717
uses: actions/setup-node@v4
1818
with:
19+
node-version: "22.x"
20+
registry-url: "https://registry.npmjs.org"
1921
node-version-file: "package.json"
2022
cache: "pnpm"
2123

2224
- name: 📥 Install dependencies
23-
run: pnpm install
25+
run: pnpm install --frozen-lockfile
2426

25-
- run: pnpm publish
27+
- name: Publish 🚀
28+
shell: bash
29+
run: pnpm publish --access public --no-git-checks
2630
env:
2731
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)