From c242f3335d862127667fc6a43fa1f91b258b2d18 Mon Sep 17 00:00:00 2001 From: Max Novich Date: Mon, 30 Jun 2025 14:04:27 -0700 Subject: [PATCH] attempt fix folde permissions for windows build (#3178) can only test after merge --- .github/workflows/build-cli.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-cli.yml b/.github/workflows/build-cli.yml index 25fac9a8..85d1a855 100644 --- a/.github/workflows/build-cli.yml +++ b/.github/workflows/build-cli.yml @@ -288,6 +288,9 @@ jobs: # Move the built binary to the expected location (inside container) mkdir -p ../target/x86_64-pc-windows-gnu/release mv temporal-service.exe ../target/x86_64-pc-windows-gnu/release/temporal-service.exe + + # Fix permissions for host access + chmod -R 755 ../target/x86_64-pc-windows-gnu " echo "temporal-service.exe built successfully for Windows"