Skip to content

Commit

Permalink
fix release workflow to not trim publish (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
krogenth authored Jul 28, 2023
1 parent cbab4f9 commit 121e916
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Run Publish
run: |
dotnet publish -c Release -r "${{ matrix.DOTNET_RUNTIME_IDENTIFIER }}" -o ./${{ env.PUBLISH_DIRECTORY }} -p:Version="${{ steps.version_info.outputs.build_version }}" -p:SourceRevisionId="${{ steps.version_info.outputs.git_short_hash }}" -p:DebugType=embedded -p:PublishTrimmed=true src/G2DataGUI --self-contained true
dotnet publish -c Release -r "${{ matrix.DOTNET_RUNTIME_IDENTIFIER }}" -o ./${{ env.PUBLISH_DIRECTORY }} -p:Version="${{ steps.version_info.outputs.build_version }}" -p:SourceRevisionId="${{ steps.version_info.outputs.git_short_hash }}" -p:DebugType=embedded src/G2DataGUI --self-contained true
- name: Pack Windows Build
if : matrix.os == 'windows-latest'
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]uild/
[Bb]in/
[Oo]bj/
[Pp]ublish/

# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
!packages/*/build/
Expand Down
1 change: 0 additions & 1 deletion libs/imgui
Submodule imgui deleted from d73e32

0 comments on commit 121e916

Please sign in to comment.