Skip to content

Commit

Permalink
Remove --no-build from pack command
Browse files Browse the repository at this point in the history
  • Loading branch information
BeanCheeseBurrito committed Jul 29, 2024
1 parent ec3afc9 commit c0ca05b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ jobs:
shell: bash
run: |
if [ '${{ github.event.inputs.nuget-registry }}' == 'NuGet' ]; then
dotnet pack --no-build --property:FlecsVersionSuffix=$FlecsVersionSuffix -c Debug
dotnet pack --no-build --property:FlecsVersionSuffix=$FlecsVersionSuffix -c Release
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix -c Debug
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix -c Release
else
dotnet pack --no-build --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:DebugType=embedded -c Debug
dotnet pack --no-build --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:DebugType=embedded -c Release
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:DebugType=embedded -c Debug
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:DebugType=embedded -c Release
fi
- name: Upload Artifacts
Expand Down

0 comments on commit c0ca05b

Please sign in to comment.