Skip to content

Commit

Permalink
fix(github actions): fix ignore flags for deploy-canary workflow (car…
Browse files Browse the repository at this point in the history
…bon-design-system#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
  • Loading branch information
jeffchew authored Jan 9, 2024
1 parent de38e68 commit cc5e2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit cc5e2b4

Please sign in to comment.