From e25c3026163546c413e6e1bd144bac30008a50b2 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 18 May 2026 19:16:05 -0400 Subject: [PATCH] Uncomment artifact archiving step in build workflow --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5bb83d5c..9ce5ad0b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -713,16 +713,16 @@ jobs: write-host "sleeping during login..." Start-Sleep 10 -# - name: Archive artifacts -# uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 -# if: runner.os == 'Windows' -# with: -# archive: true -# name: images-${{ matrix.os }} -# if-no-files-found: ignore -# path: | -# ${{ github.workspace }}/*.png -# ${{ github.workspace }}/*.log + - name: Archive artifacts + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 + if: runner.os == 'Windows' + with: + archive: true + name: images-${{ matrix.os }} + if-no-files-found: ignore + path: | + ${{ github.workspace }}/*.png + ${{ github.workspace }}/*.log - name: Sign gam.exe if: runner.os == 'Windows'