From 143408aac007c46c9658b6d0e03788d1064a6180 Mon Sep 17 00:00:00 2001 From: BadMagic100 Date: Thu, 21 Jul 2022 13:53:41 -0700 Subject: [PATCH] Update dotnet.yml --- .github/workflows/dotnet.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 80aa68a..3b9a6ac 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -9,7 +9,7 @@ on: jobs: build-win: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v3 @@ -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 @@ -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 @@ -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 @@ -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