We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c37cedb commit 882c252Copy full SHA for 882c252
.github/workflows/deploy.yml
@@ -32,7 +32,13 @@ jobs:
32
- name: Build the application
33
run: |
34
cd ./ConnectX.${{ matrix.configuration }}
35
- dotnet publish -f net9.0 -c Release -r linux-x64 --self-contained true /p:PublishSingleFile=true
+ dotnet publish -f net9.0 -c Release -r linux-x64 --self-contained false /p:PublishSingleFile=true
36
+
37
+ - name: Remove extra files
38
+ run: |
39
+ cd ./ConnectX.${{ matrix.configuration }}/bin/Release/net9.0/linux-x64/publish/
40
+ rm -f *.pdb
41
+ rm -f *.json
42
43
- name: Upload build artifacts
44
uses: actions/upload-artifact@v4
0 commit comments