Create windows.yml #1
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 and Release EXE | |
on: | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' # 替换为你的 Python 版本 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyinstaller | |
- name: Build EXE | |
run: | | |
pyinstaller main.spec | |
- name: Upload EXE to GitHub Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: dist/* # 假设生成的EXE文件在dist目录下 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |