Skip to content

Commit 9278039

Browse files
committed
fix release binary zip folder structure
1 parent 7462a5e commit 9278039

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ jobs:
4646
codesign --sign "$CODESIGN_SIGN" --prefix austincondiff.CodeEdit. --options=runtime --verbose --timestamp .build/apple/Products/Release/codeedit-cli
4747
4848
- name: Zip
49-
run: zip -r .build/apple/Products/Release/codeedit-cli.zip .build/apple/Products/Release/codeedit-cli
49+
run: |
50+
cd .build/apple/Products/Release
51+
zip -r codeedit-cli.zip codeedit-cli
52+
cd ../../../../
5053
5154
- name: Notarize
5255
env:

0 commit comments

Comments
 (0)