We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a65a3b commit f161c74Copy full SHA for f161c74
.github/workflows/release.yml
@@ -7,6 +7,10 @@ on:
7
8
concurrency: ${{ github.workflow }}-${{ github.ref }}
9
10
+permissions:
11
+ id-token: write # Required for OIDC
12
+ contents: read
13
+
14
jobs:
15
release:
16
name: Release
@@ -23,11 +27,15 @@ jobs:
23
27
with:
24
28
node-version-file: .node-version
25
29
cache: "pnpm"
30
+ registry-url: "https://registry.npmjs.org"
26
31
32
- name: Install Dependencies
33
run: pnpm install
34
35
- name: Create Release Pull Request
36
uses: changesets/action@v1
37
+ with:
38
+ publish: pnpm publish
39
env:
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
+ NPM_TOKEN: ""
0 commit comments