Skip to content

Commit

Permalink
Fix dotnet workflow for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
somnisomni authored Nov 16, 2024
1 parent 239e946 commit 3a8162a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
- name: Restore dependencies
run: dotnet restore --runtime win-${{ matrix.arch }}
- name: Build using 'DebugCI' configuration
run: dotnet build $ROOT_CSPROJ_PATH --configuration DebugCI --runtime win-${{ matrix.arch }}
run: dotnet build $env:ROOT_CSPROJ_PATH --configuration DebugCI --runtime win-${{ matrix.arch }}
- name: Test
run: dotnet test $ROOT_CSPROJ_PATH --no-build --verbosity normal --configuration DebugCI --runtime win-${{ matrix.arch }}
run: dotnet test $env:ROOT_CSPROJ_PATH --no-build --verbosity normal --configuration DebugCI --runtime win-${{ matrix.arch }}
- name: Publish the binary
run: dotnet publish $ROOT_CSPROJ_PATH --no-build --output output --configuration DebugCI --runtime win-${{ matrix.arch }}
run: dotnet publish $env:ROOT_CSPROJ_PATH --no-build --output output --configuration DebugCI --runtime win-${{ matrix.arch }}
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 3a8162a

Please sign in to comment.