Skip to content

Commit

Permalink
Removing windows-latest from CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
sadukie committed Dec 20, 2024
1 parent 210ac08 commit 1a4c023
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down

0 comments on commit 1a4c023

Please sign in to comment.