From 8d5c13cbfc8d3899f213205dcfd8157fdb69052b Mon Sep 17 00:00:00 2001 From: Martin Tirion Date: Thu, 21 Nov 2024 11:07:00 +0100 Subject: [PATCH] Changed release action to skip when exists to enable rerun --- .github/workflows/release-and-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-and-publish.yml b/.github/workflows/release-and-publish.yml index 62d2353..c9e6927 100644 --- a/.github/workflows/release-and-publish.yml +++ b/.github/workflows/release-and-publish.yml @@ -57,6 +57,7 @@ jobs: - name: Create release uses: ncipollo/release-action@v1 with: + skipIfReleaseExists: true artifacts: "./tools.zip" body: ${{steps.github_release.outputs.changelog}} tag: "v${{ steps.gitversion.outputs.MajorMinorPatch }}"