liuyuqi-dellpc 2 months ago
parent
commit
2be45568ed
2 changed files with 5 additions and 3 deletions
  1. 2 1
      .github/workflows/build.yml
  2. 3 2
      requirements-win.txt

+ 2 - 1
.github/workflows/build.yml

@@ -35,12 +35,13 @@ jobs:
       - name: Install Dependencies
         run: |
           python -m pip install --upgrade pip wheel setuptools
-          pip install -r requirements.txt
+          pip install -r requirements-win.txt
           python -m pip install pyinstaller
 
       - name: Build Package
         run: |
           python -m PyInstaller -F -c  -i favicon.ico --name repo_sync main.py
+          python -m PyInstaller -F -c  -i favicon.ico --name repo_sync_gui main_gui.py
 
       - name: Update to ali oss
         uses: yizhoumo/setup-ossutil@v1

+ 3 - 2
requirements-win.txt

@@ -1,5 +1,6 @@
-requests==2.27.1
+requests>=2.31.0
 python-dotenv==1.0.0
+pyyaml>=6.0.1
+colorama
 PyQt5
 pywin32
-colorama