Skip to content

Commit

Permalink
feat(infra): Add infrastructure build step to deployment workflows
Browse files Browse the repository at this point in the history
The commit introduces an infrastructure build step ('pnpm build') to both the cloud-deploy and cloud-deploy-preview_reusable workflows. This ensures that the able infrastructures are built before deployment, improving the overall stability of the deployment process.
  • Loading branch information
AleksandarDev committed Dec 19, 2023
1 parent 607f0e6 commit e2d060a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cloud-deploy-preview_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
env:
BASE_BRANCH: ${{ inputs.baseRef }}

- name: ⚒️ Build Infrastructure
run: pnpm build

- name: ⚡ Preview Deploy Infrastructure
uses: pulumi/actions@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/cloud-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ jobs:
env:
BASE_BRANCH: ${{ github.base_ref }}

- name: ⚒️ Build Infrastructure
run: pnpm build

- name: ⚡ Deploy signalco Infrastructure
uses: pulumi/actions@v4
with:
Expand Down

0 comments on commit e2d060a

Please sign in to comment.