From 35e0d9b9fbcf2cf19114040e14c7793a990e8d6d Mon Sep 17 00:00:00 2001 From: Max Novich Date: Wed, 25 Jun 2025 09:46:33 -0700 Subject: [PATCH] copy permission fix for cli (#3073) needs to big pushed to test --- .github/workflows/build-cli.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-cli.yml b/.github/workflows/build-cli.yml index 75acc485..8c754d83 100644 --- a/.github/workflows/build-cli.yml +++ b/.github/workflows/build-cli.yml @@ -288,7 +288,8 @@ jobs: # Move the built binary to the expected location mkdir -p target/x86_64-pc-windows-gnu/release - mv temporal-service/temporal-service.exe target/x86_64-pc-windows-gnu/release/temporal-service.exe + chmod -R ug+rwX target/x86_64-pc-windows-gnu/release + cp -f temporal-service/temporal-service.exe target/x86_64-pc-windows-gnu/release/temporal-service.exe echo "temporal-service.exe built successfully for Windows" - name: Download temporal CLI (Linux/macOS) @@ -400,4 +401,4 @@ jobs: uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4 with: name: goose-${{ matrix.architecture }}-${{ matrix.target-suffix }} - path: ${{ env.ARTIFACT }} \ No newline at end of file + path: ${{ env.ARTIFACT }}