From 6d2d9f535637fca0533235de3fb2d8ab74c7bfa0 Mon Sep 17 00:00:00 2001 From: Hhhhhhand <75928576+Hhhhhhand@users.noreply.github.com> Date: Tue, 23 Jan 2024 20:36:04 +0800 Subject: [PATCH] Update python-publish.yml --- .github/workflows/python-publish.yml | 60 +++++++++++++++++----------- 1 file changed, 37 insertions(+), 23 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index bdaab28..15c90bd 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -1,39 +1,53 @@ -# This workflow will upload a Python Package using Twine when a release is created -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries +# This workflows will upload a Python Package using Twine when a release is created +# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: Upload Python Package +# action的名称 +name: Upload Python Package gotwo on: - release: - types: [published] + # 当master分支有push时,触发action + #push: + # branches: + # - master + + # 当一个pr被合并到master时,触发action + pull_request: + branches: + - master + + # 当发布时,触发action + #release: + # types: [created] -permissions: - contents: read jobs: deploy: - + name: publish python package to PYPI + # 此作业在 Linux 上运行 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + # 此步骤使用 GitHub 的 https://github.com/actions/checkout + - uses: actions/checkout@v2 + + # 设置python环境 + # 此步骤使用 GitHub 的 https://github.com/actions/setup-python - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v2 with: python-version: '3.x' + + # 安装依赖 - 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: ${{ secrets.PYPI_API_TOKEN }} + pip install setuptools wheel twine + + # 构建和发布 + - name: Build and publish + env: + TWINE_USERNAME: ${{ __token__ }} + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} + run: | + python setup.py sdist bdist_wheel + twine upload dist/*