diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 27497976c..b0a1d4db7 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -12,7 +12,7 @@ jobs: name: Continuous Integration strategy: matrix: - os: [ ubuntu-latest, windows-latest ] + os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} outputs: is_push_to_default_branch: ${{ steps.conditionals_handler.outputs.is_push_to_default_branch }} @@ -104,7 +104,7 @@ jobs: if: needs.ci.outputs.is_push_to_default_branch == 'true' name: Continuous Deployment needs: ci - runs-on: windows-latest + runs-on: ubuntu-latest steps: - name: Download publish artifacts id: dl_publish_artifacts diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 3b1ebd9fe..707f06b0b 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -5,7 +5,7 @@ on: [pull_request, workflow_dispatch] jobs: build: - runs-on: windows-latest + runs-on: ubuntu-latest env: VIMEO_TOKEN: ${{ secrets.VIMEO_TOKEN }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a722e1427..7aa6cdecd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,7 @@ name: publish env: - AZURE_WEBAPP_NAME: devBetter + AZURE_WEBAPP_NAME: devbetter-linux AZURE_GROUP_NAME: DevBetterGroup AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root @@ -12,7 +12,7 @@ on: jobs: build-and-deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4