|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
name: Upload Python Package
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
|
|
|
release:
|
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
|
@ -14,19 +14,19 @@ jobs:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- name: Set up Python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
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@b7f401de30cb6434a1e19f805ff006643653240e
|
|
|
|
|
with:
|
|
|
|
|
user: __token__
|
|
|
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- name: Set up Python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
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@b7f401de30cb6434a1e19f805ff006643653240e
|
|
|
|
|
with:
|
|
|
|
|
user: __token__
|
|
|
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
|
|
|