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