From 612449eb63139d05df02dcdba9f6ade113e9c80a Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 3 Jan 2022 09:38:09 -0800 Subject: Validate test results before uploading build artifacts --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4001a17d..2eeedec8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,16 +38,16 @@ jobs: SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }} SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }} + - name: Validate test results + shell: cmd + run: 7z a build\testresults.zip @src\testresultfilelist.txt + - name: Save build uses: actions/upload-artifact@v2 with: name: artifacts path: build/artifacts/ - - name: Validate Test Results - shell: cmd - run: 7z a build\testresults.zip @src\testresultfilelist.txt - - name: Zip temp logs shell: cmd run: 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log" -- cgit v1.2.3-55-g6feb