更新 .gitea/workflows/pypi.yaml
Some checks failed
Publish to PyPI on main branch update / build_and_publish (push) Has been cancelled

This commit is contained in:
跨越晨昏 2024-11-02 13:53:25 +08:00
parent 9e594ef7ee
commit 8a8422ea81

View File

@ -1,31 +1,29 @@
name: Upload Python Package
name: Publish to PyPI on main branch update
on:
release:
types: [published]
permissions:
contents: read
push:
branches:
- main
jobs:
deploy:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.11' # 指定你需要的Python版本
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install setuptools wheel twine
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: pypi-AgEIcHlwaS5vcmcCJDYxNjk2MzExLTg2NjMtNDUwNi1hMTQ0LTM2NDkxY2U1NjExYwACKlszLCIwNmJkMmFkZS1hYjkxLTQ0MWMtOWM1ZC02MmE0OTc3NTc5Y2EiXQAABiD_N8XZktPwthdp9dRpkpm7dIEh3eVbSr-X6H_OS8OzDw
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
run: |
twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} dist/*