There was an error while loading. Please reload this page.
1 parent a2dbf85 commit 6c3517dCopy full SHA for 6c3517d
1 file changed
.github/workflows/cd.yml
@@ -4,7 +4,11 @@ on:
4
workflow_dispatch:
5
push:
6
tags:
7
- - "*"
+ - "v*"
8
+
9
+permissions:
10
+ id-token: write
11
+ contents: read
12
13
jobs:
14
deploy:
@@ -21,13 +25,13 @@ jobs:
21
25
uses: actions/setup-node@v4
22
26
with:
23
27
node-version: 24
28
+ registry-url: 'https://registry.npmjs.org'
24
29
cache: "pnpm"
30
- name: Install and test
31
run: pnpm install-test --frozen-lockfile
32
- name: Publish
33
run: pnpm publish --ignore-scripts
34
env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
35
NPM_CONFIG_PROVENANCE: true
36
- name: Pages
37
run: pnpm run deploy
0 commit comments