We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4f3d9d commit 89863eeCopy full SHA for 89863ee
.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
32
id: build_cache
33
if: success()
34
- name: Cache build
35
- uses: actions/cache@v2
+ uses: actions/cache@v4
36
with:
37
path: ./dist
38
key: ${{ runner.os }}-build-${{ hashFiles('dist/**') }}
@@ -59,6 +59,10 @@ jobs:
59
60
fetch-depth: 0
61
persist-credentials: false
62
+ - name: Install semantic release plugins
63
+ run: npm install semantic-release-pypi@4 @semantic-release/git@10 @semantic-release/commit-analyzer@13 @semantic-release/release-notes-generator@14 @semantic-release/github@11 @semantic-release/changelog@6 conventional-changelog-conventionalcommits@8 --no-audit
64
+ - name: Clear npm cache
65
+ run: npm cache clean --force
66
- name: Semantic Release
67
uses: cycjimmy/[email protected]
68
0 commit comments