@joebigelow / wix / commits / 612449eb

Validate test results before uploading build artifacts

Rob Mensching committed Jan 3, 2022 at 09:38 UTC 612449eb63139d05df02dcdba9f6ade113e9c80a
1 file changed +4 -4
.github/workflows/build.yml
+4 -4
@@ -38,16 +38,16 @@ jobs:
38 SigningUser: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_USER || '' }}
39 SigningSecret: ${{ github.ref == 'refs/heads/master' && secrets.WIX_SIGNING_SECRET || '' }}
40
41 + - name: Validate test results
42 + shell: cmd
43 + run: 7z a build\testresults.zip @src\testresultfilelist.txt
44 +
45 - name: Save build
46 uses: actions/upload-artifact@v2
47 with:
48 name: artifacts
49 path: build/artifacts/
50
47 - - name: Validate Test Results
48 - shell: cmd
49 - run: 7z a build\testresults.zip @src\testresultfilelist.txt
50 -
51 - name: Zip temp logs
52 shell: cmd
53 run: 7z a "build\logs\test_burn_%GITHUB_RUN_ID%.zip" "%TEMP%\*.log" "%TEMP%\..\*.log"