Skip to content

Commit

Permalink
convert to original workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nnnyt committed Jan 24, 2024
1 parent 6d2d9f5 commit 88be9b6
Showing 1 changed file with 23 additions and 37 deletions.
60 changes: 23 additions & 37 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 88be9b6

Please sign in to comment.