Skip to content

Commit ba3efa5

Browse files
authored
Update CI/CD to push to a Linux web app (#1346)
1 parent e032c26 commit ba3efa5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Continuous Integration
1313
strategy:
1414
matrix:
15-
os: [ ubuntu-latest, windows-latest ]
15+
os: [ ubuntu-latest ]
1616
runs-on: ${{ matrix.os }}
1717
outputs:
1818
is_push_to_default_branch: ${{ steps.conditionals_handler.outputs.is_push_to_default_branch }}
@@ -104,7 +104,7 @@ jobs:
104104
if: needs.ci.outputs.is_push_to_default_branch == 'true'
105105
name: Continuous Deployment
106106
needs: ci
107-
runs-on: windows-latest
107+
runs-on: ubuntu-latest
108108
steps:
109109
- name: Download publish artifacts
110110
id: dl_publish_artifacts

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request, workflow_dispatch]
55
jobs:
66
build:
77

8-
runs-on: windows-latest
8+
runs-on: ubuntu-latest
99
env:
1010
VIMEO_TOKEN: ${{ secrets.VIMEO_TOKEN }}
1111

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: publish
22

33
env:
4-
AZURE_WEBAPP_NAME: devBetter
4+
AZURE_WEBAPP_NAME: devbetter-linux
55
AZURE_GROUP_NAME: DevBetterGroup
66
AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
77

@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build-and-deploy:
15-
runs-on: ubuntu-18.04
15+
runs-on: ubuntu-latest
1616

1717
steps:
1818
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)