From be33ab3d29ba6a660f8ab095f5826a7cbd28539f Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Sat, 23 Nov 2024 21:57:34 -0500 Subject: [PATCH] Check the build directory for the final signed artifact Signed-off-by: Geoff Hutchison --- .github/workflows/build_windows.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 299e209a92..13bc1b90e6 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -147,6 +147,12 @@ jobs: wait-for-completion: true output-artifact-directory: '../build/' + - name: Look for signed artifact + if: matrix.config.os == 'windows-latest' && github.ref == 'refs/heads/master' + run: | + ls -la ${{ runner.workspace }}/build/ + shell: bash + - name: Upload if: matrix.config.artifact != 0 id: upload-signed-artifact