Skip to content

Commit 6f37d85

Browse files
committed
fix: issues with deploy and .pdb files
1 parent 376efca commit 6f37d85

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CopyDist.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
$ErrorActionPreference = 'Stop'
44

55
git clean dist -fdx
6-
bazel build //:copy_dist_include //:copy_dist_bin //:copy_dist_codegen_plugins //:copy_dist_images
7-
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_include
8-
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_images
9-
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_bin
10-
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_codegen_plugins
11-
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_recipe_bundles
6+
bazel build //:copy_dist_include //:copy_dist_bin //:copy_dist_codegen_plugins //:copy_dist_images -c opt
7+
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_include -c opt
8+
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_images -c opt
9+
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_bin -c opt
10+
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_codegen_plugins -c opt
11+
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_recipe_bundles -c opt

UploadMsix.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Expand-Archive -Path $ArchivePath -DestinationPath dist
2727
((Get-Content -path .\ecsact_sdk.appinstaller -Raw) -replace '0.0.0-placeholder',"$($LatestTag)") | Set-Content -Path .\ecsact_sdk.appinstaller
2828

2929
try {
30-
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_images
30+
bazel run --ui_event_filters=-info --noshow_progress //:copy_dist_images -c opt
3131
. .\CreateMsix.ps1 -CertPath $CertPath -Version $LatestTag -CertPassword $CertPassword
3232
gh release upload $LatestTag $MsixPath ecsact_sdk.appinstaller --clobber
3333
} finally {

0 commit comments

Comments
 (0)