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.
1 parent b3d1bdc commit 72a28ffCopy full SHA for 72a28ff
.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
@@ -27,11 +33,4 @@ jobs:
33
run: yarn build
34
35
- name: Release
- env:
31
- GITHUB_TOKEN: ${{ secrets.VENUS_TOOLS_TOKEN }}
32
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- GIT_AUTHOR_NAME: Venus Tools
- GIT_AUTHOR_EMAIL: [email protected]
- GIT_COMMITTER_NAME: Venus Tools
36
- GIT_COMMITTER_EMAIL: [email protected]
37
run: yarn semantic-release
0 commit comments