Skip to content

Commit

Permalink
Pack pdbs in gitlab packages
Browse files Browse the repository at this point in the history
  • Loading branch information
BeanCheeseBurrito committed Jul 29, 2024
1 parent c0ca05b commit 512b1ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix -c Debug
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix -c Release
else
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:DebugType=embedded -c Debug
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:DebugType=embedded -c Release
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:FlecsPackPdb=true -c Debug
dotnet pack --property:FlecsVersionSuffix=$FlecsVersionSuffix --property:FlecsPackPdb=true -c Release
fi
- name: Upload Artifacts
Expand Down
1 change: 1 addition & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true' And '$(ContinuousIntegrationBuild)' == ''">true</ContinuousIntegrationBuild>
<Deterministic Condition="'$(GITHUB_ACTIONS)' == 'true' And '$(Deterministic)' == ''">true</Deterministic>
<AllowedOutputExtensionsInPackageBuildOutputFolder Condition="'$(FlecsPackPdb)' == 'true'">$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 512b1ae

Please sign in to comment.