From 88be9b6361658d4f89eba4116cf2d02920bf8f1b Mon Sep 17 00:00:00 2001 From: Yuting Ning <48355377+nnnyt@users.noreply.github.com> Date: Wed, 24 Jan 2024 16:17:42 +0800 Subject: [PATCH] convert to original workflow --- .github/workflows/python-publish.yml | 60 +++++++++++----------------- 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 15c90bd..bdaab28 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -1,53 +1,39 @@ -# 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 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 -# action的名称 -name: Upload Python Package gotwo +# 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 on: - # 当master分支有push时,触发action - #push: - # branches: - # - master - - # 当一个pr被合并到master时,触发action - pull_request: - branches: - - master - - # 当发布时,触发action - #release: - # types: [created] + release: + types: [published] +permissions: + contents: read jobs: deploy: - name: publish python package to PYPI - # 此作业在 Linux 上运行 + runs-on: ubuntu-latest steps: - # 此步骤使用 GitHub 的 https://github.com/actions/checkout - - uses: actions/checkout@v2 - - # 设置python环境 - # 此步骤使用 GitHub 的 https://github.com/actions/setup-python + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: '3.x' - - # 安装依赖 - name: Install dependencies run: | python -m pip install --upgrade pip - 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/* + 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 }}