From 25caeaa26f21c4d6aca74436fd82dd6eebc9d2b5 Mon Sep 17 00:00:00 2001 From: mimartin12 <77340197+mimartin12@users.noreply.github.com> Date: Tue, 20 Sep 2022 08:45:27 -0600 Subject: [PATCH] patch web build workflows with docker builds --- .github/workflows/build-web.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-web.yml b/.github/workflows/build-web.yml index fdd534d1dc..a5fc5f6185 100644 --- a/.github/workflows/build-web.yml +++ b/.github/workflows/build-web.yml @@ -155,7 +155,11 @@ jobs: uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 with: name: web-${{ env._VERSION }}-selfhosted-COMMERCIAL.zip - path: apps/web/build + path: apps/web + + - name: Extract selfhosted-COMMERCIAL artifact + working-directory: apps/web + run: unzip web-${{ env._VERSION }}-selfhosted-COMMERCIAL.zip - name: Build Docker image working-directory: apps/web @@ -262,7 +266,11 @@ jobs: uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 with: name: web-${{ env._VERSION }}-cloud-QA.zip - path: apps/web/build + path: apps/web + + - name: Extract cloud-QA artifact + working-directory: apps/web + run: unzip web-${{ env._VERSION }}-cloud-QA.zip - name: Build Docker image working-directory: apps/web