Client library: Release #3
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: Release | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
permissions: | |
contents: write | |
jobs: | |
build-release: | |
runs-on: ubuntu-latest | |
name: Deploy documentation to GitHub Pages | |
concurrency: docs | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python and dependencies | |
uses: ./.github/actions/python-deps | |
with: | |
pythonVersion: "3.11" | |
# Package build | |
- name: Build and check | |
id: build | |
run: | | |
python -m build | |
echo "package_wheel=$(basename dist/*.whl)" >> $GITHUB_OUTPUT | |
echo "package_sdist=$(basename dist/*.gz)" >> $GITHUB_OUTPUT | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Add wheel as release asset | |
uses: actions/upload-release-asset@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: dist/${{ steps.build.outputs.package_wheel }} | |
asset_name: ${{ steps.build.outputs.package_wheel }} | |
asset_content_type: application/zip | |
- name: Add sdist as release asset | |
uses: actions/upload-release-asset@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: dist/${{ steps.build.outputs.package_sdist }} | |
asset_name: ${{ steps.build.outputs.package_sdist }} | |
asset_content_type: application/zip | |
# Docs | |
- name: Build release documentation | |
run: mkdocs build | |
- name: Archive built documentation | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: public/docs | |
- name: Deploy release documentation | |
uses: ./.github/actions/mike-docs | |
with: | |
version: ${{ github.event.release.tag_name }} | |
alias: latest | |
push: true |