Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build and Publish Python Packages" | |
on: | |
push: | |
tags: "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
build_sdist_wheel: | |
name: "Source and wheel distribution" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v3 | |
- name: "Set up Python" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: "Install Python build dependencies" | |
run: | | |
pip install wheel nox | |
- name: "Build source distribution" | |
run: | | |
python setup.py sdist | |
- name: "Build wheel" | |
run: | | |
python setup.py bdist_wheel | |
- name: "Upload artifacts" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: rivalcfg-dist | |
path: dist/ | |
retention-days: 1 | |
publish_pypi: | |
name: "Publish packages on PyPI" | |
runs-on: ubuntu-latest | |
needs: | |
- build_sdist_wheel | |
steps: | |
- name: "Download artifacts" | |
uses: actions/download-artifact@v3 | |
- name: "Move packages to the dist/ folder" | |
run: | | |
mkdir dist/ | |
mv rivalcfg-dist/* dist/ | |
- name: "Publish packages on PyPI" | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |