1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-30 04:17:55 +02:00

PM-3350 build.yml disable trimming on publish so it's faster

This commit is contained in:
Federico Maccaroni 2023-11-24 13:59:09 -03:00
parent 1c8742511a
commit 3edfef6169
No known key found for this signature in database
GPG Key ID: 5D233F8F2B034536

View File

@ -674,7 +674,7 @@ jobs:
Write-Output "##### Archive for Release ios-arm64 Write-Output "##### Archive for Release ios-arm64
Write-Output "########################################" 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 "########################################"
Write-Output "##### Done" Write-Output "##### Done"
@ -687,7 +687,7 @@ jobs:
Write-Output "##### Archive Releae for iossimulator-arm64 Write-Output "##### Archive Releae for iossimulator-arm64
Write-Output "########################################" 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 "########################################"
Write-Output "##### Done" Write-Output "##### Done"