-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
debuging windows exe and Apple M1/M2 CPU app release
- Loading branch information
1 parent
ef0ca39
commit 34188f2
Showing
1 changed file
with
3 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,21 +54,19 @@ jobs: | |
DISPLAY: ':99.0' | ||
|
||
steps: | ||
# Step 1: Check out the repository code | ||
# Step 1: Check out the repository code | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Step 2: Install dependencies and requirements | ||
# Step 2: Install system dependencies and requirements | ||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.txt | ||
python -m pip install --upgrade pip | ||
pip install pyside2 pytest coverage pytest-qt | ||
# Step 3: Build with PyInstaller using .ico file for Windows | ||
- name: Build with PyInstaller | ||
- name: PyInstaller Action | ||
uses: Martin005/[email protected] | ||
with: | ||
spec: main_exe.spec # Path to your .py or .spec file | ||
|