From 5cef7775ea944b793ca35118ef5d1ffc5a4c8d28 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Sun, 19 Apr 2026 21:54:40 -0500 Subject: [PATCH] fix duplicate windows zips on develop release --- .github/workflows/artifacts.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index d02b874ea..839baa153 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -344,6 +344,7 @@ jobs: - name: Delete old release assets if: ${{ inputs.release_tag == 'develop' }} + shell: bash env: GH_TOKEN: ${{ github.token }} run: | @@ -352,6 +353,7 @@ jobs: | xargs -r -I{} gh release delete-asset ${{ inputs.release_tag }} {} --yes --repo ${{ github.repository }} - name: Publish + shell: bash env: GH_TOKEN: ${{ github.token }} run: gh release upload ${{ inputs.release_tag }} "${{ env.RELEASE_NAME }}.zip" --repo ${{ github.repository }}