Fix for electron builds (#2658)

* Test a fix for electron builds

* Add release note
This commit is contained in:
DJ Mountney
2024-04-23 17:50:41 -07:00
committed by GitHub
parent 51ad488ce2
commit c8cc479358
3 changed files with 16 additions and 2 deletions

View File

@@ -33,7 +33,11 @@ jobs:
- if: ${{ startsWith(matrix.os, 'windows') }}
run: pip.exe install setuptools
- if: ${{ ! startsWith(matrix.os, 'windows') }}
run: python3 -m pip install setuptools
run: |
mkdir .venv
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install setuptools
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get install flatpak -y

View File

@@ -28,7 +28,11 @@ jobs:
- if: ${{ startsWith(matrix.os, 'windows') }}
run: pip.exe install setuptools
- if: ${{ ! startsWith(matrix.os, 'windows') }}
run: python3 -m pip install setuptools
run: |
mkdir .venv
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install setuptools
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get install flatpak -y

View File

@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [twk3]
---
Fix electron builds on OSX