Skip to content

Commit

Permalink
ci: use dotnet build instead of msbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
MSchmoecker committed Jan 19, 2025
1 parent 1282b11 commit e708951
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
# Build DLLs
- name: Build solution
run: |
msbuild JotunnLib.sln /p:Configuration=Release
dotnet build JotunnLib.sln --configuration Release
# Upload artifact
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
# Build DLLs
- name: Build solution
run: |
msbuild JotunnLib.sln /p:Configuration=Debug
dotnet build JotunnLib.sln --configuration Debug
# Upload artifact
- uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ jobs:
- name: Build solution
run: |
msbuild JotunnLib.sln /p:Configuration=Release
dotnet build JotunnLib.sln --configuration Release
mv JotunnLib/bin/Release/net462/Jotunn.dll Jotunn.dll
msbuild JotunnLib.sln /p:Configuration=Debug
dotnet build JotunnLib.sln --configuration Debug
mv JotunnLib/bin/Debug/net462/Jotunn.dll Jotunn-DEBUG-${{ steps.get_version.outputs.VERSION }}.dll
- name: Upload Nexusmods zip as artifact
Expand Down

0 comments on commit e708951

Please sign in to comment.