mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 04:16:05 +00:00
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>
This commit is contained in:
4
.github/workflows/release-executables.yml
vendored
4
.github/workflows/release-executables.yml
vendored
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user