Browse Source

fix: use different name for upload artifact to avoid conflict

https://github.com/actions/upload-artifact?tab=readme-ov-file#not-uploading-to-the-same-artifact
Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/7310/head
Pranav C 6 months ago
parent
commit
681c8d8705
  1. 4
      .github/workflows/release-executables.yml

4
.github/workflows/release-executables.yml

@ -134,7 +134,7 @@ jobs:
- uses: actions/upload-artifact@master
with:
name: ${{ github.event.inputs.tag || inputs.tag }}
name: ${{ format('{0}-signed', github.event.inputs.tag || inputs.tag) }}
path: scripts/pkg-executable/mac-dist
retention-days: 1
@ -145,7 +145,7 @@ jobs:
steps:
- uses: actions/download-artifact@master
with:
name: ${{ github.event.inputs.tag || inputs.tag }}
name: ${{ format('{0}-signed', github.event.inputs.tag || inputs.tag) }}
path: scripts/pkg-executable/mac-dist

Loading…
Cancel
Save