From 53d1d85ac5e0a8f9aed8f5980753f9a8c55fa717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Sun, 25 Aug 2024 22:37:40 +0200 Subject: [PATCH] =?UTF-8?q?...=20=F0=9F=A5=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c660629..aa891e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -178,7 +178,7 @@ jobs: attach_to_release: name: Attach native executables to release if: ${{ github.event.inputs.doRelease == 'true' }} - needs: create_draft_release + needs: [build-win-x64,build-linux-x64,build-macos, create_draft_release] runs-on: ubuntu-latest steps: - name: Get current date @@ -188,8 +188,30 @@ jobs: - name: GH version run: gh --version - - name: Fetch executables + - name: Download GoFileCLI_osx-arm64 artifact uses: actions/download-artifact@v3 + with: + name: GoFileCLI_osx-arm64 + + - name: Download GoFileCLI_osx-x64 artifact + uses: actions/download-artifact@v3 + with: + name: GoFileCLI_osx-x64 + + - name: Download GoFileCLI_linux-x64 artifact + uses: actions/download-artifact@v3 + with: + name: GoFileCLI_linux-x64 + + - name: Download GoFileCLI_win-x64 artifact + uses: actions/download-artifact@v3 + with: + name: GoFileCLI_win-x64 + + - name: List downloaded files + run: | + echo "Listing files in the working directory:" + ls -R - name: Tar (linux, macOS) run: |