feat: 初步支持win32窗口调试 #2
Workflow file for this run
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: pip publish | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
- uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ github.ref_name }} | |
- name: Update pyproject.toml version | |
run: | | |
python tools/pip_pack.py ${{ github.ref_name }} | |
- name: Install pdm and publish | |
run: | | |
python -m pip install --upgrade pip | |
pip install pdm | |
pdm publish --password ${{ secrets.PYPI_TOKEN }} |