Skip to content

Commit

Permalink
fix(fern-bot): compile workspaces before build (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
armandobelardo authored Sep 3, 2024
1 parent 9bf34f1 commit e9bbb88
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy-fern-bot-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
env:
CI: false
run: |
pnpm compile
pnpm --filter "@fern-platform/fern-bot" release --stage development
1 change: 1 addition & 0 deletions .github/workflows/deploy-fern-bot-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ jobs:
env:
CI: false
run: |
pnpm compile
pnpm --filter "@fern-platform/fern-bot" install
pnpm --filter "@fern-platform/fern-bot" release --stage production
2 changes: 2 additions & 0 deletions .github/workflows/invoke-fern-bot-update-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
uses: ./.github/actions/install
- name: 🚀 serverless deploy
run: |
pnpm compile
pnpm --filter "@fern-platform/fern-bot" install
pnpm --filter "@fern-platform/fern-bot" invoke local --function updateOpenApiSpecs --stage development
Expand All @@ -61,5 +62,6 @@ jobs:
uses: ./.github/actions/install
- name: 🚀 serverless deploy
run: |
pnpm compile
pnpm --filter "@fern-platform/fern-bot" install
pnpm --filter "@fern-platform/fern-bot" invoke local --function updateOpenApiSpecs --stage production
2 changes: 2 additions & 0 deletions .github/workflows/invoke-fern-bot-upgrade-generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
uses: ./.github/actions/install
- name: 🚀 serverless deploy
run: |
pnpm compile
pnpm --filter "@fern-platform/fern-bot" install
pnpm --filter "@fern-platform/fern-bot" invoke local --function updateGeneratorVersions --stage development
Expand All @@ -59,5 +60,6 @@ jobs:
uses: ./.github/actions/install
- name: 🚀 serverless deploy
run: |
pnpm compile
pnpm --filter "@fern-platform/fern-bot" install
pnpm --filter "@fern-platform/fern-bot" invoke local --function updateGeneratorVersions --stage production

0 comments on commit e9bbb88

Please sign in to comment.