From 681c8d8705cc4795bd085683abe5e46c43ddf02b Mon Sep 17 00:00:00 2001 From: Pranav C Date: Thu, 28 Dec 2023 14:55:50 +0530 Subject: [PATCH] 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 --- .github/workflows/release-executables.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-executables.yml b/.github/workflows/release-executables.yml index 7b85111c5b..568cce59e5 100644 --- a/.github/workflows/release-executables.yml +++ b/.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