Skip to content

Commit 0ee062b

Browse files
Update deployment jobs to run on Windows instead of Ubuntu
1 parent fd33de9 commit 0ee062b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy-v2.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ env:
9090
jobs:
9191
docker-build:
9292
if: github.event_name == 'workflow_dispatch' && github.event.inputs.build_docker_image == 'true'
93-
runs-on: ubuntu-latest
93+
runs-on: windows-latest
9494
outputs:
9595
IMAGE_TAG: ${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}
9696
steps:
@@ -194,7 +194,7 @@ jobs:
194194
deploy:
195195
if: always() && (github.event_name != 'workflow_dispatch' || github.event.inputs.existing_webapp_url == '' || github.event.inputs.existing_webapp_url == null)
196196
needs: [docker-build]
197-
runs-on: ubuntu-latest
197+
runs-on: windows-latest
198198
outputs:
199199
invoice_schema_id: ${{ steps.register.outputs.invoice_schema_id }}
200200
propertydamageclaimform_schema_id: ${{ steps.register.outputs.propertylossdamageclaimform_schema_id }}
@@ -629,7 +629,7 @@ jobs:
629629
send-notification:
630630
if: always()
631631
needs: [docker-build, deploy, e2e-test]
632-
runs-on: ubuntu-latest
632+
runs-on: windows-latest
633633
env:
634634
accelerator_name: "Content Processing"
635635
steps:
@@ -781,7 +781,7 @@ jobs:
781781
cleanup-deployment:
782782
if: always() && needs.deploy.result == 'success' && needs.deploy.outputs.RESOURCE_GROUP_NAME != '' && github.event.inputs.existing_webapp_url == '' && (github.event_name != 'workflow_dispatch' || github.event.inputs.cleanup_resources == 'true' || github.event.inputs.cleanup_resources == null)
783783
needs: [docker-build, deploy, e2e-test]
784-
runs-on: ubuntu-latest
784+
runs-on: windows-latest
785785
env:
786786
RESOURCE_GROUP_NAME: ${{ needs.deploy.outputs.RESOURCE_GROUP_NAME }}
787787
AZURE_LOCATION: ${{ needs.deploy.outputs.AZURE_LOCATION }}

0 commit comments

Comments
 (0)