We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44636de commit 5bd982cCopy full SHA for 5bd982c
.github/workflows/main.yml
@@ -21,9 +21,11 @@ jobs:
21
python -m pip install --upgrade pip
22
pip install pyinstaller
23
24
- - name: Build EXE
+ - name: Find and Build
25
run: |
26
- pyinstaller --noconsole --onefile gui_app.py
+ # Эта команда найдет файл, где бы он ни лежал в репозитории
27
+ $filePath = Get-ChildItem -Recurse -Filter "gui_app.py" | Select-Object -ExpandProperty FullName
28
+ pyinstaller --noconsole --onefile $filePath
29
30
- name: Upload Artifact
31
uses: actions/upload-artifact@v4
0 commit comments