Merge pull request #63 from PrefectHQ/ft/bump-release-python #22
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 & Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build-release: | |
name: Build Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install packages | |
run: | | |
python -m pip install --upgrade pip build | |
python -m pip install --upgrade --upgrade-strategy eager -e .[dev] | |
- name: Build a binary wheel and a source tarball | |
run: | | |
python -m build --sdist --wheel --outdir dist/ | |
- name: Publish build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: built-package | |
path: "./dist" | |
publish-release: | |
name: Publish release to PyPI | |
needs: [build-release] | |
environment: "prod" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: built-package | |
path: "./dist" | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
verbose: true | |
build-and-publish-docs: | |
name: Build and publish docs | |
needs: [build-release, publish-release] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build docs | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade --upgrade-strategy eager -e .[dev] | |
mkdocs build | |
- name: Publish docs | |
uses: JamesIves/[email protected] | |
with: | |
branch: docs | |
folder: site |