From 1f3335fa9df16cea36c6d5c656dc76448b38c0a4 Mon Sep 17 00:00:00 2001 From: KoalaBear Date: Thu, 31 Oct 2024 07:28:53 +0100 Subject: [PATCH] - Fix build pipeline --- .github/workflows/main.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e2602b9..662e730e 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: ${{ matrix.target }} + name: build-artifact-${{ matrix.target }} path: | OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip src/Dockerfile @@ -98,7 +98,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: all-artifacts + name: build-artifact-${{ matrix.target }} path: | OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip @@ -111,7 +111,9 @@ jobs: - name: Download Artifacts uses: actions/download-artifact@v4.1.7 with: - name: all-artifacts + path: build-artifact + pattern: build-artifact-* + merge-multiple: true - name: Get tag info id: tag_info