4 Commits

Author SHA1 Message Date
Yannik Schmidt
3579948407 fix: copy helper scripts instead of fixed 2025-04-17 11:58:44 +02:00
Yannik Schmidt
597a471949 fix: build unpackaged exe because of windwos defender 2025-04-17 11:53:24 +02:00
Yannik Schmidt
27d32e147b add: sqlalchemy to deps 2025-04-17 11:45:03 +02:00
Yannik Schmidt
ac8e8ad495 fix: add requests to explicit installs 2025-04-17 11:39:16 +02:00
2 changed files with 11 additions and 2 deletions

View File

@@ -25,7 +25,13 @@ jobs:
pip install -r requirements.txt
- name: Build EXE
run: pyinstaller -F client.py
run: pyinstaller client.py
- name: Copy helper scripts
run: |
cp .\dist\run.bat .\dist\client\
cp .\dist\run.ps1 .\dist\client\
cp .\windows_run_as_admin.ps1 .\dist\client\
- name: Archive EXE
run: Compress-Archive -Path dist\ -DestinationPath release.zip
@@ -33,4 +39,5 @@ jobs:
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create ${{ github.ref_name }} "release.zip" --generate-notes --title "release-${{ github.ref_name }}"
run: gh release create ${{ github.ref_name }} "release.zip" --generate-notes --title "release-${{ github.ref_name }}"

View File

@@ -5,3 +5,5 @@ tqdm
Jinja2
pyyaml
pywin32==306; platform_system=="Windows"
requests
sqlalchemy