Changed requirements-client to requirements in windows action

This commit is contained in:
Christoph Stahl 2025-02-15 16:52:45 +01:00
parent 53d6e6efda
commit e3f7f4d471
2 changed files with 1 additions and 7 deletions

View file

@ -2,12 +2,6 @@ name: Build for windows and docker and create a release
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
tags: [ 'v*.*.*' ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

View file

@ -68,7 +68,7 @@ jobs:
- name: Bundle Syng
run: |
pip install -r requirements-client.txt
pip install -r requirements.txt
pyinstaller -n "syng-${{ env.VERSION }}" -F -w -i'.\syng.ico' --add-data='.\syng.ico;.' --add-data='.\background.png;.' --add-data='.\background20perc.png;.' --add-binary '.\libmpv-2.dll;.' --add-binary '.\ffmpeg.exe;.' syng/main.py
working-directory: ./work