File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ jobs:
168168 WebSocketReflectorX-${{steps.git_tag_version.outputs.BUILD_VERSION}}-portable-windows-msvc-x86_64.zip
169169 build-mac :
170170 name : " Build on MacOS"
171- runs-on : macos-14
171+ runs-on : macos-latest
172172 steps :
173173 # Checkout repository (and submodules)
174174 - name : Checkout repository (and submodules)
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ set -ex
4+
35APP=" target/release/bundle/osx/WebSocketReflectorX.app"
46APP_NAME=" WebSocketReflectorX"
57BIN=" $APP /Contents/MacOS/wsrx-desktop"
68ZIP=" ./WebSocketReflectorX.app.zip"
79
8- cargo bundle --release
10+ cd crates/desktop && cargo bundle --release
11+
12+ cd ../..
13+
14+ ls -alh $APP
915# codesign --timestamp --verify -vvv --deep --options=runtime --sign $IDENT $APP
1016zip -r $ZIP $APP
1117# xcrun notarytool submit --apple-id $USERNAME --team-id $IDENT --password $PASSWORD --wait $ZIP
You can’t perform that action at this time.
0 commit comments