👷 auto publish to pypi

This commit is contained in:
xtaodada 2023-10-27 22:03:24 +08:00
parent 292ecd3c47
commit ad505c857e
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

35
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Publish
on:
push:
tags:
- '**'
workflow_dispatch: ~
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install Poetry and Twine
run: |
pip install poetry twine
- name: Install dependencies
run: poetry install
- name: Build wheel
run: poetry build
- name: upload to pypi
run: twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}