Skip to content

Commit

Permalink
- dotnet build
Browse files Browse the repository at this point in the history
  • Loading branch information
horseyhorsey committed Oct 8, 2023
1 parent 49e68aa commit fa6b9a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
echo $GITHUB_PATH
# Build the NetProc.Game. This uses all the other main packages so they will be built here
dotnet build NetProc.Game/NetProc.Game.csproj -p:Platform= "${{ matrix.target }}" -c=Release -o "$release_name" --no-self-contained
dotnet build NetProc.Game/NetProc.Game.csproj -p:Platform="${{ matrix.target }}" -c=Release -o "${release_name}" --no-self-contained
# Build the Sqlite data project
dotnet build NetProc.Data/NetProc.Data.csproj -p:Platform= "${{ matrix.target }}" -c=Release -o "${release_name}" --no-self-contained
dotnet build NetProc.Data/NetProc.Data.csproj -p:Platform="${{ matrix.target }}" -c=Release -o "${release_name}" --no-self-contained
# Build ports plugins
dotnet build NetProc.Ports/NetProc.Ports.WSLED/NetProc.Ports.WSLED.csproj -p:Platform= "${{ matrix.target }}" -c=Release -o "${release_name}" --no-self-contained
dotnet build NetProc.Ports/NetProc.Ports.WSLED/NetProc.Ports.WSLED.csproj -p:Platform="${{ matrix.target }}" -c=Release -o "${release_name}" --no-self-contained
# Zip or Tar the nuget packages
7z a -tzip "${release_name}.zip" "$GITHUB_WORKSPACE/.nupkg/*"
Expand Down

0 comments on commit fa6b9a9

Please sign in to comment.