From 66d406d469ecaabd31641586035394fae55cf59e Mon Sep 17 00:00:00 2001 From: 2shady4u Date: Mon, 12 Aug 2024 21:40:22 +0200 Subject: [PATCH] Update artifact actions to v4, Use unique name for each artifact --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0838c0f..3491ec0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: 🌈 All Builds on: push: - branches: [ master ] + branches: [ master, feature/update-artifact-actions ] tags: - "v*" @@ -102,9 +102,9 @@ jobs: - name: Upload Artifact env: ARTIFACT_FOLDER: ${{ env.PROJECT_FOLDER }}/${{ env.TARGET_PATH }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: ${{ matrix.platform }} + name: ${{ matrix.cache-name }}-${{ matrix.target }} path: ${{ env.ARTIFACT_FOLDER }}*.${{ matrix.artifact-extension }} if-no-files-found: error @@ -123,7 +123,7 @@ jobs: - name: Download Artifacts id: download - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: artifacts