From 3a757bba29a54031cc5e1a1f685addeef6380e56 Mon Sep 17 00:00:00 2001 From: rare-magma Date: Tue, 6 Aug 2024 23:13:11 +0200 Subject: [PATCH] fix: concurrency setup and bundle task Signed-off-by: rare-magma --- .github/workflows/pr.yml | 2 +- .github/workflows/release.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c4afbf8f..14d8135c 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -3,7 +3,7 @@ permissions: contents: read concurrency: group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} + cancel-in-progress: true on: pull_request: types: [opened, reopened] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee1adf79..601031fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,7 @@ name: Release concurrency: group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} + cancel-in-progress: true on: push: branches: @@ -193,4 +193,5 @@ jobs: uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: + tag_name: ${{ steps.semrel.outputs.version }} files: guitos.zip \ No newline at end of file