We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 805c36b commit d113cc6Copy full SHA for d113cc6
1 file changed
.github/workflows/release.yml
@@ -9,16 +9,22 @@ jobs:
9
release:
10
name: Release
11
runs-on: ubuntu-latest
12
+ permissions:
13
+ contents: write
14
+ issues: write
15
+ pull-requests: write
16
+ id-token: write
17
steps:
18
- uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0
21
- uses: actions/setup-node@v4
22
with:
- node-version: latest
23
+ node-version: 'lts/*'
24
cache: 'yarn'
25
- run: yarn install --immutable
26
- run: yarn build
27
- run: yarn test
28
- run: npx semantic-release --branches main
29
env:
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments