This commit is contained in:
√(noham)² 2024-08-25 22:37:40 +02:00
parent c6781dbf95
commit 53d1d85ac5

View File

@ -178,7 +178,7 @@ jobs:
attach_to_release: attach_to_release:
name: Attach native executables to release name: Attach native executables to release
if: ${{ github.event.inputs.doRelease == 'true' }} 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 runs-on: ubuntu-latest
steps: steps:
- name: Get current date - name: Get current date
@ -188,8 +188,30 @@ jobs:
- name: GH version - name: GH version
run: gh --version run: gh --version
- name: Fetch executables - name: Download GoFileCLI_osx-arm64 artifact
uses: actions/download-artifact@v3 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) - name: Tar (linux, macOS)
run: | run: |