From 63ccf8e87cda38b0584dc3db53ef793b8a480879 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Tue, 14 Sep 2021 12:03:36 -0700 Subject: [PATCH] trying to find the browser artifacts --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b091820ab3..5c72023966 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -109,32 +109,41 @@ jobs: - name: Gulp run: gulp ci + - name: Try to find the zips + run: | + ls -atlh dist + - name: Upload Opera artifact uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 with: name: dist-opera-${{ env._BUILD_NUMBER }}.zip path: dist/dist-opera-${{ env._BUILD_NUMBER }}.zip + if-no-files-found: error - name: Upload Chrome artifact uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 with: name: dist-chrome-${{ env._BUILD_NUMBER }}.zip path: dist/dist-chrome-${{ env._BUILD_NUMBER }}.zip + if-no-files-found: error - name: Upload Firefox artifact uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 with: name: dist-firefox-${{ env._BUILD_NUMBER }}.zip path: dist/dist-firefox-${{ env._BUILD_NUMBER }}.zip + if-no-files-found: error - name: Upload Edge artifact uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 with: name: dist-edge-${{ env._BUILD_NUMBER }}.zip path: dist/dist-edge-${{ env._BUILD_NUMBER }}.zip + if-no-files-found: error - name: Upload coverage artifact uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 with: name: coverage-${{ env._BUILD_NUMBER }}.zip path: coverage/coverage-${{ env._BUILD_NUMBER }}.zip + if-no-files-found: error