From a07dc7c5cf13528023181cd891d1a72daad2b4e8 Mon Sep 17 00:00:00 2001 From: GrieferAtWork Date: Wed, 10 May 2023 18:30:59 +0200 Subject: [PATCH] Always save build artifacts --- .github/workflows/windows-x32.yml | 1 + .github/workflows/windows-x64.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/windows-x32.yml b/.github/workflows/windows-x32.yml index 2c4342bcf..5cbe0a431 100644 --- a/.github/workflows/windows-x32.yml +++ b/.github/workflows/windows-x32.yml @@ -36,6 +36,7 @@ jobs: unlink lib/LANGUAGE.txt || true - name: Save executable as artifact + if: success() || failure() uses: actions/upload-artifact@v3 with: name: ${{ runner.os }}-${{ github.sha }}-build-x32 diff --git a/.github/workflows/windows-x64.yml b/.github/workflows/windows-x64.yml index f4d8fb479..409f0e57a 100644 --- a/.github/workflows/windows-x64.yml +++ b/.github/workflows/windows-x64.yml @@ -36,6 +36,7 @@ jobs: unlink lib/LANGUAGE.txt || true - name: Save executable as artifact + if: success() || failure() uses: actions/upload-artifact@v3 with: name: ${{ runner.os }}-${{ github.sha }}-build-x64