Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ZingBallyhoo committed Oct 4, 2024
1 parent 6bc3c6c commit 2dbbb46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,27 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'recursive'
- name: Install .NET 8
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore project
run: dotnet restore TACTLib.sln --verbosity m -r win-x64
- name: Build Release
run: dotnet publish -f net8.0 --configuration Release -r win-x64 --self-contained false -o dist/Release
- name: Upload Release
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: TACTLib-release
path: dist/Release
- name: Build Debug
run: dotnet publish -f net8.0 --configuration Debug -r win-x64 --self-contained false -o dist/Debug
- name: Upload Debug
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: TACTLib-debug
path: dist/Debug

0 comments on commit 2dbbb46

Please sign in to comment.