We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8225bfa commit cdceb5bCopy full SHA for cdceb5b
1 file changed
.github/workflows/release.yml
@@ -24,11 +24,12 @@ jobs:
24
dotnet-quality: 'preview'
25
26
- name: Publish
27
- run: dotnet publish sharpclaw -c Release -r ${{ matrix.rid }} --self-contained -p:PublishSingleFile=true -o out/${{ matrix.rid }}
+ run: dotnet publish sharpclaw -c Release -r ${{ matrix.rid }} --self-contained -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=none -p:GenerateDocumentationFile=false -o out/${{ matrix.rid }}
28
29
- name: Package
30
run: |
31
cd out/${{ matrix.rid }}
32
+ rm -f *.pdb *.xml
33
zip -r ../../sharpclaw-${{ matrix.rid }}.zip .
34
35
- uses: actions/upload-artifact@v4
0 commit comments