We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d541518 + 0793641 commit 7bbcd38Copy full SHA for 7bbcd38
1 file changed
.github/workflows/publish.yml
@@ -14,17 +14,21 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v4
17
+ - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
18
+ with:
19
+ version: 9
20
- uses: actions/setup-node@v4
21
with:
22
node-version: "24"
23
registry-url: "https://registry.npmjs.org"
24
+ cache: pnpm
25
- name: Set version from tag
26
run: |
27
VERSION=${GITHUB_REF#refs/tags/v}
28
npm pkg set version="$VERSION"
29
npm pkg set private=false --json
- - run: npm ci
- - run: npm run build
30
+ - run: pnpm install --frozen-lockfile
31
+ - run: pnpm run build
32
- name: Verify startup
33
run: node dist/index.js --help
34
- run: npm publish --provenance
0 commit comments