Release #4
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: Release | |
on: | |
workflow_run: | |
workflows: ["CI"] | |
branches: [main] | |
types: | |
- completed | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
draft-release: | |
permissions: | |
contents: write | |
pull-requests: write | |
name: Draft Release | |
runs-on: ubuntu-latest | |
outputs: | |
build_assets: ${{ steps.check-version.outputs.tag }} | |
upload_url: ${{ steps.update-release.outputs.upload_url }} | |
steps: | |
- name: Install poetry | |
run: | | |
pipx install poetry | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry env use 3.11 | |
poetry config installer.modern-installation false | |
poetry install | |
- name: Detect and tag new version | |
id: check-version | |
uses: salsify/[email protected] | |
with: | |
version-command: | | |
bash -o pipefail -c "poetry version | awk '{ print \$2 }'" | |
- name: Publish the release notes | |
id: update-release | |
uses: release-drafter/[email protected] | |
with: | |
publish: ${{ steps.check-version.outputs.tag != '' }} | |
tag: ${{ steps.check-version.outputs.tag }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
build-release-assets: | |
name: Build Release Assets | |
runs-on: ubuntu-latest | |
needs: draft-release | |
if: ${{ needs.draft-release.outputs.build_assets != '' }} | |
steps: | |
- name: Install poetry | |
run: | | |
pipx install poetry | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry env use 3.11 | |
poetry config installer.modern-installation false | |
poetry install | |
- name: Build Distribution | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
python -m build . | |
- name: Upload Distribution Assets | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ needs.draft-release.outputs.upload_url }} | |
asset_path: dist/* | |
- name: Build Documentation | |
run: | | |
make docs | |
zip -r docs.zip docs/site | |
- name: Upload Documentation Assets | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ needs.draft-release.outputs.upload_url }} | |
asset_path: docs.zip | |
- name: Publish docs to github pages | |
run: | | |
cd docs/; poetry run mkdocs gh-deploy --force |