diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index e2936e7..2bad8f1 100644 --- a/.github/workflows/build-and-publish.yaml +++ b/.github/workflows/build-and-publish.yaml @@ -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: diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index c48b9a6..c60d88d 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -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