fix: copy helper scripts instead of fixed

This commit is contained in:
Yannik Schmidt
2025-04-17 11:58:44 +02:00
parent 597a471949
commit 3579948407
3 changed files with 8 additions and 1 deletions

View File

@@ -27,10 +27,17 @@ jobs:
- name: Build EXE
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
- 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

View File