From cc5e2b475b9d972f936ffcbf2ce5d009b3a08c9b Mon Sep 17 00:00:00 2001 From: Jeff Chew Date: Tue, 9 Jan 2024 12:55:50 -0500 Subject: [PATCH] fix(github actions): fix ignore flags for deploy-canary workflow (#11250) ### Related Ticket(s) N/A ### Description This fixes some minor issues with the `deploy-canary` workflow where additional `--ignore` flags are in the build commands for `web-components` and `services`. ### Changelog **Changed** - `deploy-canary.yml` fixes to yarn build commands --- .github/workflows/deploy-canary.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-canary.yml b/.github/workflows/deploy-canary.yml index 6c8e75a85a1..f23edf140e8 100644 --- a/.github/workflows/deploy-canary.yml +++ b/.github/workflows/deploy-canary.yml @@ -82,7 +82,7 @@ jobs: - name: Install dependencies run: yarn install --immutable --immutable-cache - name: Build project - run: yarn lerna run --ignore build + run: yarn lerna run build - name: Set env vars uses: ./.github/actions/set-dotenv @@ -197,7 +197,7 @@ jobs: - name: Install dependencies run: yarn install --immutable --immutable-cache - name: Build project - run: yarn lerna run --ignore --ignore @carbon/ibmdotcom-web-components --ignore @carbon/web-components build + run: yarn lerna run --ignore @carbon/ibmdotcom-web-components --ignore @carbon/web-components build - name: Set env vars uses: ./.github/actions/set-dotenv with: