windows package

This commit is contained in:
jxxghp 2023-10-09 13:40:09 +08:00
parent 97f16289c9
commit 38f7a31200

View File

@ -19,18 +19,20 @@ jobs:
- name: Install Dependent Packages - name: Install Dependent Packages
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install wheel numpy==1.23.5 pyparsing==3.0.9 wxpython==4.2.0 pyinstaller==5.7.0 pip install wheel pyinstaller
git clone --depth=1 -b main https://github.com/jxxghp/MoviePilot git clone --depth=1 -b main https://github.com/jxxghp/MoviePilot
cd MoviePilot cd MoviePilot
pip install -r requirements.txt pip install -r requirements.txt
shell: pwsh shell: pwsh
- name: Pyinstaller - name: Pyinstaller
run: | run: |
cd MoviePilot cd MoviePilot
pyinstaller windows.spec pyinstaller windows.spec
shell: pwsh shell: pwsh
- name: Upload Windows File - name: Upload Windows File
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: windows name: windows
path: MoviePilot/dist/MoviePilot.exe path: MoviePilot/dist/MoviePilot/MoviePilot.exe