Skip to content

PyPI Publish: QQ API #19

PyPI Publish: QQ API

PyPI Publish: QQ API #19

Workflow file for this run

name: "PyPI Publish: QQ API"
on:
workflow_dispatch: {}
push:
tags:
- "qqapi-v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
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
- name: Build Package
run: |
pdm mina build qqapi
- name: Publish to PyPI
run: |
twine upload dist/* --non-interactive -u __token__ -p ${{ secrets.PYPI_TOKEN }}