Skip to content

Commit

Permalink
fix release binary zip folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepistrol committed Dec 7, 2022
1 parent 7462a5e commit 9278039
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ jobs:
codesign --sign "$CODESIGN_SIGN" --prefix austincondiff.CodeEdit. --options=runtime --verbose --timestamp .build/apple/Products/Release/codeedit-cli
- name: Zip
run: zip -r .build/apple/Products/Release/codeedit-cli.zip .build/apple/Products/Release/codeedit-cli
run: |
cd .build/apple/Products/Release
zip -r codeedit-cli.zip codeedit-cli
cd ../../../../
- name: Notarize
env:
Expand Down

0 comments on commit 9278039

Please sign in to comment.