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 1ee7ddb commit 6f8ed19Copy full SHA for 6f8ed19
1 file changed
.github/workflows/release.yml
@@ -46,6 +46,14 @@ jobs:
46
node-version: 24.14.1
47
cache: pnpm
48
49
+ # node-gyp внутри electron-builder требует Python с distutils (< 3.12)
50
+ # для кросс-архитектурной пересборки нативных модулей.
51
+ - name: Setup Python for node-gyp (macOS)
52
+ if: matrix.platform == 'mac'
53
+ uses: actions/setup-python@v5
54
+ with:
55
+ python-version: '3.11'
56
+
57
- name: Install dependencies
58
run: pnpm install
59
0 commit comments