From 8a8422ea81fcce7a484034b519ade3fc37b5ab03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B7=A8=E8=B6=8A=E6=99=A8=E6=98=8F?= Date: Sat, 2 Nov 2024 13:53:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.gitea/workflows/pypi.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pypi.yaml | 50 ++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/.gitea/workflows/pypi.yaml b/.gitea/workflows/pypi.yaml index 1a06d60..96c815c 100644 --- a/.gitea/workflows/pypi.yaml +++ b/.gitea/workflows/pypi.yaml @@ -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: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.11' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install build - - 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 \ No newline at end of file + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' # 指定你需要的Python版本 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install setuptools wheel twine + + - name: Build package + run: python setup.py sdist bdist_wheel + + - name: Publish to PyPI + run: | + twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} dist/* \ No newline at end of file