Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Paullux committed Jan 1, 2024
1 parent 9860d89 commit c3ec649
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,16 @@ jobs:
with:
python-version: 3.11 # Utilisation de Python 3.11

- name: Install Dependencies for Ubuntu
if: startsWith(matrix.os, 'ubuntu')
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install python3-pyqt5.qtsvg
python -m pip install --upgrade pip
pip install -r requirements-linux.txt # Utilisez votre fichier requirements-linux.txt
pip install -r requirements.txt # Utilisez le fichier requirements.txt unifié
- name: Install Dependencies for Windows
if: startsWith(matrix.os, 'windows')
- name: Additional Setup for Ubuntu
if: startsWith(matrix.os, 'ubuntu')
run: |
python -m pip install --upgrade pip
pip install -r requirements-windows.txt # Utilisez votre fichier requirements-windows.txt
sudo apt-get update
sudo apt-get install python3-pyqt5.qtsvg # Installer le paquet requis pour Ubuntu
- name: Install PyInstaller
run: pip install pyinstaller # Installation de PyInstaller
Expand Down
6 changes: 0 additions & 6 deletions requirements-linux.txt

This file was deleted.

File renamed without changes.

0 comments on commit c3ec649

Please sign in to comment.