aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-06-23 19:40:19 -0300
committerGitHub <noreply@github.com>2021-06-24 00:40:19 +0200
commitaea7a6631caa625d0cc97c03f1f134b623101f0e (patch)
tree1f4a8931c641d6944386bcf98591e8e853689365 /.github
parentd6b2ac33aa6d5fd21c884f218c886c6fe256acfc (diff)
Reduce number of dlls on distribution with single file publish (#2211)
* Enable single file publish * Set DebugType to embedded on build scripts
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 474ed308..672835d8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -63,7 +63,7 @@ jobs:
- name: Test
run: dotnet test -c "${{ matrix.configuration }}"
- name: Publish
- run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.DOTNET_RUNTIME_IDENTIFIER }}" -o ./publish /p:Version="1.0.0" /p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" /p:ExtraDefineConstants=DISABLE_UPDATER Ryujinx
+ run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.DOTNET_RUNTIME_IDENTIFIER }}" -o ./publish /p:Version="1.0.0" /p:DebugType=embedded /p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" /p:ExtraDefineConstants=DISABLE_UPDATER Ryujinx
if: github.event_name == 'pull_request'
- name: Upload artifacts
uses: actions/upload-artifact@v2