From 6f9c2a6f51f7be1e0f920be0ea215213f78f9295 Mon Sep 17 00:00:00 2001 From: Keelah Date: Sun, 13 Oct 2024 13:33:44 +0200 Subject: [PATCH] Bump artifact action version --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7fad935..5d8b0ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,10 @@ jobs: # BUILD APP build: - if: ( github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master' ) || startsWith(github.ref, 'refs/tags/v') + if: ( github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master' ) || startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' strategy: matrix: - # runtime: [x64, x86] + # runtime: [x64, x86] runtime: [x64] runs-on: windows-latest # For a list of available runner types, refer to @@ -78,7 +78,7 @@ jobs: Runtime: ${{ matrix.runtime }} - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.runtime }} path: .\${{ env.ZIP_NAME}}${{ matrix.runtime }}.zip @@ -94,7 +94,7 @@ jobs: fetch-depth: 0 # required for tags history processing - name: Download x64 artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-x64 path: ./artifacts