From 1f84a2ba79e577f977473d32988a6aa5a19aa016 Mon Sep 17 00:00:00 2001 From: KoalaBear Date: Sun, 1 Dec 2024 14:58:15 +0100 Subject: [PATCH] - Add suffix back - Update docker action with new build artifact name --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76b35633..41ac3329 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -90,7 +90,7 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest' && matrix.self-contained == 'normal' }} uses: actions/upload-artifact@v4 with: - name: build-artifact-${{ matrix.target }} + name: build-artifact-${{ matrix.target }}${{ matrix.suffix }} path: | OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip src/Dockerfile @@ -99,7 +99,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: build-artifact-${{ matrix.target }} + name: build-artifact-${{ matrix.target }}${{ matrix.suffix }} path: | OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip overwrite: true @@ -158,9 +158,9 @@ jobs: run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT - name: Download artifact - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: - name: ${{ matrix.target }} + name: build-artifact-${{ matrix.target }}${{ matrix.suffix }} - name: Decompress artifact uses: TonyBogdanov/zip@1.0