Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BadMagic100 authored Jul 21, 2022
1 parent b56b000 commit 143408a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build-win:

runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore -r win-x64 --no-self-contained
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Create Artifacts
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore -r linux-x64 --no-self-contained
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Create Artifacts
Expand All @@ -51,7 +51,7 @@ jobs:
path: HKMultiInstance/bin/Release/net6.0
build-osx:

runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore -r osx-x64 --no-self-contained
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Create Artifacts
Expand Down

0 comments on commit 143408a

Please sign in to comment.