Skip to content

Commit 0907412

Browse files
committed
yml fix 2
1 parent c387190 commit 0907412

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/dbase.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
matrix:
1616
include:
1717
- os: ubuntu-latest
18-
python: "3.11"
18+
python: "3.13"
1919
add_data_sep: ":"
2020
- os: windows-latest
21-
python: "3.11"
21+
python: "3.13"
2222
add_data_sep: ";"
2323

2424
steps:
@@ -38,16 +38,19 @@ jobs:
3838
if [ -f requirements.txt ]; then
3939
pip install -r requirements.txt
4040
fi
41+
# falls requirements.txt in src/ liegt, zusätzlich:
42+
if [ -f src/requirements.txt ]; then
43+
pip install -r src/requirements.txt
44+
fi
4145
pip install pyinstaller
4246
4347
- name: Build (PyInstaller onefile)
4448
shell: bash
4549
run: |
4650
APP_NAME="dBaseRunner"
47-
ENTRYPOINT="dBaseRunner.py"
51+
ENTRYPOINT="src/dBaseRunner.py"
4852
49-
# Pack icons folder into the bundle:
50-
# Linux uses ":" | Windows uses ";"
53+
# icons liegen in src/icons, sollen im Bundle unter src/icons landen
5154
ADD_DATA="src/icons${{ matrix.add_data_sep }}src/icons"
5255
5356
pyinstaller \

0 commit comments

Comments
 (0)