chore: fix some bugs #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
UPX: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set-up | |
shell: bash | |
run: | | |
pip install pyinstaller | |
pip install requests | |
python ".github/workflows/Get-upx.py" | |
set /p content=<url | |
echo CONTENT=%content% >> %GITHUB_ENV% | |
curl -L -o upx.zip %content% | |
mkdir upx | |
tar -xf "upx.zip" -C upx --strip-components=1 | |
- name: Build with pyinstaller | |
run: | | |
pyinstaller --onefile --upx-dir="upx" "LiteLoaderQQNT Auto Install.py" --strip | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "[有 UPX 压缩] LiteLoaderQQNT Auto Install" | |
path: | | |
dist/LiteLoaderQQNT Auto Install.exe | |
No-UPX: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set-up | |
shell: bash | |
run: | | |
pip install pyinstaller | |
pip install requests | |
- name: Build with pyinstaller | |
run: | | |
pyinstaller --onefile "LiteLoaderQQNT Auto Install.py" | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "[无 UPX 压缩] Python - LiteLoaderQQNT Auto Install" | |
path: | | |
dist/LiteLoaderQQNT Auto Install.exe |