We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fcaaf1 commit 12b141eCopy full SHA for 12b141e
.github/workflows/release.yml
@@ -66,6 +66,12 @@ jobs:
66
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
67
68
- name: install frontend dependencies
69
+ if: runner.os == 'macOS'
70
+ run: |
71
+ bun pm add -D node-gyp nan
72
+ npm_config_build_from_source=false bun install
73
+ - name: install frontend dependencies (non-mac)
74
+ if: runner.os != 'macOS'
75
run: bun install
76
77
- name: Export TS bindings (needed before bun build)
0 commit comments