42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build-n-publish:
|
|
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install Poetry
|
|
run: |
|
|
curl -sSL https://install.python-poetry.org | python3 -
|
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
|
|
- name: Install dependencies
|
|
run: make install
|
|
|
|
- name: Clean previous builds
|
|
run: make clean
|
|
|
|
- name: Build package
|
|
run: make build
|
|
|
|
# - name: Publish distribution 📦 to Test PyPI
|
|
# uses: pypa/gh-action-pypi-publish@release/v1
|
|
# with:
|
|
# repository_url: https://test.pypi.org/legacy/
|
|
# packages_dir: dist/
|
|
|
|
- name: Publish distribution 📦 to PyPI
|
|
run: make publish |