From 9e4451187248e82b0b73548103ca6ac3dd7ab828 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sun, 26 Apr 2026 08:09:44 -0400 Subject: [PATCH] Modify artifact archiving to include log files Updated the artifact archiving step to include log files. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2616c50f..f5d54c64 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -738,7 +738,7 @@ jobs: write-host "sleeping during login..." Start-Sleep 10 - - name: Archive png artifacts + - name: Archive artifacts uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0 if: runner.os == 'Windows' with: @@ -747,6 +747,7 @@ jobs: if-no-files-found: ignore path: | ${{ github.workspace }}/*.png + ${{ github.workspace }}/*.log - name: Sign gam.exe if: runner.os == 'Windows'