Skip to content

Commit 46c7856

Browse files
authored
⬆️ fix macOS CI bundle script (#25)
1 parent ca6cea2 commit 46c7856

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

deployments/deb.fish

Whitespace-only changes.

deployments/macos.sh

100644100755
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/bash
22

3+
set -ex
4+
35
APP="target/release/bundle/osx/WebSocketReflectorX.app"
46
APP_NAME="WebSocketReflectorX"
57
BIN="$APP/Contents/MacOS/wsrx-desktop"
68
ZIP="./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
1016
zip -r $ZIP $APP
1117
# xcrun notarytool submit --apple-id $USERNAME --team-id $IDENT --password $PASSWORD --wait $ZIP

deployments/nsis.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)