From 38e477c540a3a50fc7ff6120da255d51798bfadd Mon Sep 17 00:00:00 2001 From: Federico Aguzzi <62149513+f-aguzzi@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:04:39 +0100 Subject: [PATCH] fix: release config --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7544d512..d26ef64d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: id: build_cache if: success() - name: Cache build - uses: actions/cache@v2 + uses: actions/cache@latest with: path: ./dist key: ${{ runner.os }}-build-${{ hashFiles('dist/**') }} @@ -59,6 +59,10 @@ jobs: with: fetch-depth: 0 persist-credentials: false + - name: Install semantic release plugins + 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 + - name: Clear npm cache + run: npm cache clean --force - name: Semantic Release uses: cycjimmy/semantic-release-action@v4.1.0 with: