Changed requirements-client to requirements in windows action
This commit is contained in:
parent
53d6e6efda
commit
e3f7f4d471
2 changed files with 1 additions and 7 deletions
6
.github/workflows/build-and-publish.yaml
vendored
6
.github/workflows/build-and-publish.yaml
vendored
|
@ -2,12 +2,6 @@ name: Build for windows and docker and create a release
|
||||||
|
|
||||||
# Controls when the workflow will run
|
# Controls when the workflow will run
|
||||||
on:
|
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
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
2
.github/workflows/windows.yaml
vendored
2
.github/workflows/windows.yaml
vendored
|
@ -68,7 +68,7 @@ jobs:
|
||||||
|
|
||||||
- name: Bundle Syng
|
- name: Bundle Syng
|
||||||
run: |
|
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
|
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
|
working-directory: ./work
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue