Browse Source

fix duplicate windows zips on develop release

pull/2857/head
Jason Dove 1 month ago
parent
commit
5cef7775ea
No known key found for this signature in database
  1. 2
      .github/workflows/artifacts.yml

2
.github/workflows/artifacts.yml

@ -344,6 +344,7 @@ jobs: @@ -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: @@ -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 }}

Loading…
Cancel
Save