We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d1bdc commit 7044855Copy full SHA for 7044855
.github/workflows/cd.yaml
@@ -6,6 +6,10 @@ on:
6
- main
7
- develop
8
9
+permissions:
10
+ id-token: write # Required for OIDC
11
+ contents: read
12
+
13
jobs:
14
release:
15
runs-on: ubuntu-latest
@@ -19,6 +23,8 @@ jobs:
19
23
- uses: actions/setup-node@v4
20
24
with:
21
25
cache: "yarn"
26
+ node-version: "20"
27
+ registry-url: "https://registry.npmjs.org"
22
28
29
- name: Install dependencies
30
run: yarn
@@ -29,7 +35,6 @@ jobs:
35
- name: Release
36
env:
31
37
GITHUB_TOKEN: ${{ secrets.VENUS_TOOLS_TOKEN }}
32
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
33
38
GIT_AUTHOR_NAME: Venus Tools
34
39
GIT_AUTHOR_EMAIL: tools@venus.io
40
GIT_COMMITTER_NAME: Venus Tools
0 commit comments