Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .devops/dev-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ steps:

- script: |
npx nx run front-office:build:azure-dev
npx nx run back-office:build:azure-dev
displayName: 'build the apps'
displayName: 'Build front-office'

# npx nx run web-widgets:build:azure-dev
# node .scripts/build-widgets.js
- script: |
npx nx run back-office:build:azure-dev
displayName: 'Build back-office'

- task: ArchiveFiles@2
inputs:
Expand Down
5 changes: 4 additions & 1 deletion .devops/prod-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ steps:

- script: |
npx nx run front-office:build:azure-prod
displayName: 'Build front-office'

- script: |
npx nx run back-office:build:azure-prod
displayName: 'build the apps'
displayName: 'Build back-office'

- task: ArchiveFiles@2
inputs:
Expand Down
5 changes: 4 additions & 1 deletion .devops/uat-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ steps:

- script: |
npx nx run front-office:build:azure-uat
displayName: 'Build front-office'

- script: |
npx nx run back-office:build:azure-uat
displayName: 'build the apps'
displayName: 'Build back-office'

- task: ArchiveFiles@2
inputs:
Expand Down