From e3f7f4d471084736a18760a900b478d16854be04 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Sat, 15 Feb 2025 16:52:45 +0100 Subject: [PATCH] Changed requirements-client to requirements in windows action --- .github/workflows/build-and-publish.yaml | 6 ------ .github/workflows/windows.yaml | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) 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