Skip to content

Commit 35e0d9b

Browse files
authored
copy permission fix for cli (aaif-goose#3073)
needs to big pushed to test
1 parent 6c2f2a1 commit 35e0d9b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build-cli.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,8 @@ jobs:
288288
289289
# Move the built binary to the expected location
290290
mkdir -p target/x86_64-pc-windows-gnu/release
291-
mv temporal-service/temporal-service.exe target/x86_64-pc-windows-gnu/release/temporal-service.exe
291+
chmod -R ug+rwX target/x86_64-pc-windows-gnu/release
292+
cp -f temporal-service/temporal-service.exe target/x86_64-pc-windows-gnu/release/temporal-service.exe
292293
echo "temporal-service.exe built successfully for Windows"
293294
294295
- name: Download temporal CLI (Linux/macOS)
@@ -400,4 +401,4 @@ jobs:
400401
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # pin@v4
401402
with:
402403
name: goose-${{ matrix.architecture }}-${{ matrix.target-suffix }}
403-
path: ${{ env.ARTIFACT }}
404+
path: ${{ env.ARTIFACT }}

0 commit comments

Comments
 (0)