mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 11:46:53 +00:00
chore: use unique artifact name
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
6
.github/workflows/release-secret-cli.yml
vendored
6
.github/workflows/release-secret-cli.yml
vendored
@@ -130,7 +130,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: packages/nc-secret-mgr/mac-dist
|
||||
retention-days: 1
|
||||
|
||||
@@ -141,14 +141,14 @@ 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: packages/nc-secret-mgr/mac-dist
|
||||
|
||||
- name: Upload executables(except mac executables) to release
|
||||
uses: svenstaro/upload-release-action@v2
|
||||
with:
|
||||
repo_token: ${{ secrets.NC_GITHUB_TOKEN_TEMP }}
|
||||
file: mac-dist/**
|
||||
file: packages/nc-secret-mgr/mac-dist/**
|
||||
tag: ${{ github.event.inputs.tag || inputs.tag }}
|
||||
overwrite: true
|
||||
file_glob: true
|
||||
|
||||
Reference in New Issue
Block a user