diff --git a/.github/workflows/python-build-win.yml b/.github/workflows/python-build-win.yml index 9ad33c2..fe232f2 100644 --- a/.github/workflows/python-build-win.yml +++ b/.github/workflows/python-build-win.yml @@ -16,11 +16,12 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r "source code/requirements.txt + cd source code + pip install -r requirements.txt - name: Build Python file run: | - cd source\ code # 切换到包含XPMSL.py的文件夹 + cd source code # 切换到包含XPMSL.py的文件夹 pyinstaller --onefile XPMSL.py - name: Upload Artifacts