PyPI Publish: OneBot v11 #12
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: "PyPI Publish: OneBot v11" | |
on: | |
workflow_dispatch: {} | |
push: | |
tags: | |
- "onebot/v11-v*.*.*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Ensure Python Runtime | |
with: | |
python-version: "3.x" | |
architecture: "x64" | |
- name: Ensure PDM & twine | |
run: | | |
python3 -m pip install pdm twine pdm-mina "mina-build<0.6" | |
- name: Build Package | |
run: | | |
export MINA_BUILD_TARGET=onebot-v11 && pdm mina build onebot-v11 --no-isolation | |
- name: Publish to PyPI | |
run: | | |
twine upload dist/* --non-interactive -u __token__ -p ${{ secrets.PYPI_TOKEN }} |