From 7cfa54ba14c74aa0b72c8bfe85daea87bfee5919 Mon Sep 17 00:00:00 2001 From: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com> Date: Fri, 2 Jul 2021 13:34:20 -0700 Subject: [PATCH] Adding logic to skip uploading a zip file if it does not exist (#1431) --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 181e79e7cd..89877570a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -314,10 +314,12 @@ jobs: cd docker-stub; zip -r ../docker-stub.zip *; cd .. - name: Upload Docker stub artifact + if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc' uses: actions/upload-artifact@ee69f02b3dfdecd58bb31b4d133da38ba6fe3700 with: name: docker-stub.zip path: ./docker-stub.zip + if-no-files-found: error - name: Build Swagger run: | @@ -341,3 +343,4 @@ jobs: with: name: swagger.json path: ./swagger.json + if-no-files-found: error