更新 .gitea/workflows/pypi.yaml
Some checks failed
Publish to PyPI on main branch update / build_and_publish (push) Has been cancelled
Some checks failed
Publish to PyPI on main branch update / build_and_publish (push) Has been cancelled
This commit is contained in:
parent
9e594ef7ee
commit
8a8422ea81
@ -1,31 +1,29 @@
|
|||||||
name: Upload Python Package
|
name: Publish to PyPI on main branch update
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
push:
|
||||||
types: [published]
|
branches:
|
||||||
|
- main
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
build_and_publish:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout code
|
||||||
- name: Set up Python
|
uses: actions/checkout@v3
|
||||||
uses: actions/setup-python@v3
|
|
||||||
with:
|
- name: Set up Python
|
||||||
python-version: '3.11'
|
uses: actions/setup-python@v4
|
||||||
- name: Install dependencies
|
with:
|
||||||
run: |
|
python-version: '3.11' # 指定你需要的Python版本
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install build
|
- name: Install dependencies
|
||||||
- name: Build package
|
run: |
|
||||||
run: python -m build
|
python -m pip install --upgrade pip
|
||||||
- name: Publish package
|
pip install setuptools wheel twine
|
||||||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
|
|
||||||
with:
|
- name: Build package
|
||||||
user: __token__
|
run: python setup.py sdist bdist_wheel
|
||||||
password: pypi-AgEIcHlwaS5vcmcCJDYxNjk2MzExLTg2NjMtNDUwNi1hMTQ0LTM2NDkxY2U1NjExYwACKlszLCIwNmJkMmFkZS1hYjkxLTQ0MWMtOWM1ZC02MmE0OTc3NTc5Y2EiXQAABiD_N8XZktPwthdp9dRpkpm7dIEh3eVbSr-X6H_OS8OzDw
|
|
||||||
|
- name: Publish to PyPI
|
||||||
|
run: |
|
||||||
|
twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} dist/*
|
Loading…
Reference in New Issue
Block a user