From f9e1f4b8c4a5d63d2bbea184b29c69ad5279575c Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Thu, 11 Apr 2024 15:58:22 +0100 Subject: [PATCH] Fixing issue with OSS build, if the user is OSS don't attempt to account portal build. --- .github/workflows/budibase_ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index 6120290d0d..536992d655 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -64,10 +64,11 @@ jobs: - run: yarn --frozen-lockfile # Run build all the projects - - name: Build - run: | - yarn build:oss - yarn build:account-portal + - name: Build OSS + run: yarn build:oss + - name: Build account portal + run: yarn build:account-portal + if: inputs.run_as_oss != true # Check the types of the projects built via esbuild - name: Check types run: |