From 3edfef61696304e014633a6b1cd3b4253d3846f8 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Fri, 24 Nov 2023 13:59:09 -0300 Subject: [PATCH] PM-3350 build.yml disable trimming on publish so it's faster --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45eb5c204..7279cae27 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -674,7 +674,7 @@ jobs: Write-Output "##### Archive for Release ios-arm64 Write-Output "########################################" - dotnet publish ${{ env.main_app_project_path }} -c Release -f ${{ env.target-net-version }}-ios /p:RuntimeIdentifier=ios-arm64 /p:ArchiveOnBuild=true + dotnet publish ${{ env.main_app_project_path }} -c Release -f ${{ env.target-net-version }}-ios /p:RuntimeIdentifier=ios-arm64 /p:ArchiveOnBuild=true /p:PublishTrimmed=False Write-Output "########################################" Write-Output "##### Done" @@ -687,7 +687,7 @@ jobs: Write-Output "##### Archive Releae for iossimulator-arm64 Write-Output "########################################" - dotnet publish ${{ env.main_app_project_path }} -c Release -f ${{ env.target-net-version }}-ios /p:RuntimeIdentifier=iossimulator-arm64 /p:ArchiveOnBuild=true + dotnet publish ${{ env.main_app_project_path }} -c Release -f ${{ env.target-net-version }}-ios /p:RuntimeIdentifier=iossimulator-arm64 /p:ArchiveOnBuild=true /p:PublishTrimmed=False Write-Output "########################################" Write-Output "##### Done"