2 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

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 }}"