diff --git a/.github/run-tests/action.yml b/.github/run-tests/action.yml index 6e2afde1f..40272981d 100644 --- a/.github/run-tests/action.yml +++ b/.github/run-tests/action.yml @@ -111,7 +111,7 @@ runs: # small test, use timeouts because on windows the GUI can catch errors and a dialog box will freeze the program - run: timeout 30 ./dist/DXRando/DXRandoInstaller --version 2>&1 shell: bash - - run: timeout 30 ./dist/DXRando/BingoViewer --version 2>&1 + - run: timeout 30 ./dist/BingoViewer/BingoViewer --version 2>&1 shell: bash # zip it up @@ -119,6 +119,10 @@ runs: run: Compress-Archive -Path ./* -Destination DXRando.zip working-directory: ./dist/DXRando/ shell: pwsh + - if: runner.os == 'Windows' + run: Compress-Archive -Path ./* -Destination BingoViewer.zip + working-directory: ./dist/BingoViewer/ + shell: pwsh - if: runner.os != 'Windows' run: zip -r9 DXRando.zip . working-directory: ./dist/DXRando