Skip to content

Commit

Permalink
Update build_electron_app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
beniroquai authored May 2, 2024
1 parent 9f01eb8 commit 8aa3bab
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build_electron_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,16 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python packages
run: |
python -m pip install --upgrade pip
pip install distutils
- name: Install Node.js dependencies
run: npm install
- run: npm run dist --publish=never
- name: Upload Artifact
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 8aa3bab

Please sign in to comment.