This commit is contained in:
parent
8c9c9a9dda
commit
9e594ef7ee
@ -1,44 +1,31 @@
|
|||||||
|
name: Upload Python Package
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
release:
|
||||||
branches:
|
types: [published]
|
||||||
- main
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-push:
|
deploy:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- uses: actions/checkout@v4
|
||||||
uses: actions/checkout@v3
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v3
|
||||||
- name: Set up Python 3.11
|
with:
|
||||||
uses: actions/setup-python@v3
|
python-version: '3.11'
|
||||||
with:
|
- name: Install dependencies
|
||||||
python-version: '3.11'
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
- name: Install build dependencies
|
pip install build
|
||||||
run: |
|
- name: Build package
|
||||||
python -m pip install --upgrade pip
|
run: python -m build
|
||||||
pip install setuptools wheel
|
- name: Publish package
|
||||||
|
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
|
||||||
- name: Build the package
|
with:
|
||||||
run: |
|
user: __token__
|
||||||
python3.11 setup.py sdist bdist_wheel
|
password: pypi-AgEIcHlwaS5vcmcCJDYxNjk2MzExLTg2NjMtNDUwNi1hMTQ0LTM2NDkxY2U1NjExYwACKlszLCIwNmJkMmFkZS1hYjkxLTQ0MWMtOWM1ZC02MmE0OTc3NTc5Y2EiXQAABiD_N8XZktPwthdp9dRpkpm7dIEh3eVbSr-X6H_OS8OzDw
|
||||||
|
|
||||||
- name: Upload artifacts
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: python-dist
|
|
||||||
path: |
|
|
||||||
dist/*.tar.gz
|
|
||||||
dist/*.whl
|
|
||||||
|
|
||||||
- name: Set up twine
|
|
||||||
run: pip install twine
|
|
||||||
|
|
||||||
- name: Publish to PyPI
|
|
||||||
env:
|
|
||||||
TWINE_USERNAME: '__token__'
|
|
||||||
TWINE_PASSWORD: 'pypi-AgEIcHlwaS5vcmcCJDYxNjk2MzExLTg2NjMtNDUwNi1hMTQ0LTM2NDkxY2U1NjExYwACKlszLCIwNmJkMmFkZS1hYjkxLTQ0MWMtOWM1ZC02MmE0OTc3NTc5Y2EiXQAABiD_N8XZktPwthdp9dRpkpm7dIEh3eVbSr-X6H_OS8OzDw'
|
|
||||||
run: |
|
|
||||||
twine upload dist/*
|
|
Loading…
Reference in New Issue
Block a user