Skip to content

Commit

Permalink
daily ci broken
Browse files Browse the repository at this point in the history
  • Loading branch information
ZingBallyhoo committed Aug 24, 2023
1 parent 0800990 commit a38aa88
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 @@ -22,16 +22,16 @@ jobs:
$num = (997+$($Env:GITHUB_RUN_NUMBER))
echo "GITHUB_RUN_NUMBER_DELTA=$num" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Restore project
run: dotnet restore OverwatchToolchain.sln --verbosity m -r win7-x64
run: dotnet restore OverwatchToolchain.sln --verbosity m -r win7-x64 -p:TargetFramework=net6.0
- name: Build Release
run: dotnet publish --configuration ReleasePublish -r win7-x64 -o dist/Release
run: dotnet publish --configuration ReleasePublish -r win7-x64 -o dist/Release -f net6.0
- name: Upload Release
uses: actions/upload-artifact@v2
with:
name: toolchain-release
path: dist/Release
- name: Build Debug
run: dotnet publish --configuration DebugPublish -r win7-x64 -o dist/Debug
run: dotnet publish --configuration DebugPublish -r win7-x64 -o dist/Debug -f net6.0
- name: Upload Debug
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit a38aa88

Please sign in to comment.