From e189f6ae011b463dbdf5bd23ef38e50bee1772bd Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Mon, 10 Feb 2025 21:44:17 -0600 Subject: [PATCH] Fix artifact downloading --- .github/workflows/LANCommander.Nightly.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/LANCommander.Nightly.yml b/.github/workflows/LANCommander.Nightly.yml index 273db090..5d5e5728 100644 --- a/.github/workflows/LANCommander.Nightly.yml +++ b/.github/workflows/LANCommander.Nightly.yml @@ -265,27 +265,17 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - name: Download Server x64 Artifact + - name: Download Server x64 Artifacts uses: actions/download-artifact@v4 with: name: LANCommander.Server-Linux-x64-v${{ needs.prep.outputs.version_tag }}.zip - path: ./artifacts/linux-x64.zip + path: ./Docker/build/linux-x64 - - name: Download and extract artifact (Linux x64) - run: | - mkdir -p ./Docker/build/linux-x64 - unzip ./artifacts/linux-x64.zip -d ./Docker/build/linux-x64 - - - name: Download Server arm64 Artifact + - name: Download Server arm64 Artifacts uses: actions/download-artifact@v4 with: name: LANCommander.Server-Linux-arm64-v${{ needs.prep.outputs.version_tag }}.zip - path: ./Docker/build/linux-arm64.zip - - - name: Download and extract artifact (Linux arm64) - run: | - mkdir -p ./Docker/build/linux-arm64 - unzip ./artifacts/linux-arm64.zip -d ./Docker/build/linux-arm64 + path: ./Docker/build/linux-arm64 - name: Build and push Docker image id: push