From 147085ac755c3a05eb9ed2b5135d7e113f23170b Mon Sep 17 00:00:00 2001 From: Max Novich Date: Mon, 30 Jun 2025 14:27:33 -0700 Subject: [PATCH] attempt to fix build #3 (#3180) --- .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 85d1a855..f91360a2 100644 --- a/.github/workflows/build-cli.yml +++ b/.github/workflows/build-cli.yml @@ -352,6 +352,9 @@ jobs: unzip -o temporal-cli-windows.zip chmod +x temporal.exe + # Fix permissions on target directory (created by Docker as root) + sudo chown -R $(whoami):$(whoami) target/x86_64-pc-windows-gnu/ || true + # Move to target directory mv temporal.exe target/x86_64-pc-windows-gnu/release/temporal.exe