From aea7a6631caa625d0cc97c03f1f134b623101f0e Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 23 Jun 2021 19:40:19 -0300 Subject: Reduce number of dlls on distribution with single file publish (#2211) * Enable single file publish * Set DebugType to embedded on build scripts --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') 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 -- cgit v1.2.3