docs(changelog): add 2.0.1 (#51) #2
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: | |
push: | |
tags: | |
# These tags should be protected, remember to enable the rule: | |
# https://github.com/canonical/starbase/settings/tag_protection | |
- "[0-9]+.[0-9]+.[0-9]+" | |
permissions: | |
contents: write | |
jobs: | |
source-wheel: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch tag annotations | |
run: | | |
git fetch --force --tags --depth 1 | |
git describe --dirty --long --match '[0-9]*.[0-9]*.[0-9]*' --exclude '*[^0-9.]*' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
check-latest: true | |
- name: Build packages | |
run: | | |
pip install build twine | |
python3 -m build | |
twine check dist/* | |
- name: Upload pypi packages artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pypi-packages | |
path: dist/ | |
pypi: | |
needs: ["source-wheel"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get packages | |
uses: actions/download-artifact@v4 | |
with: | |
name: pypi-packages | |
path: dist/ | |
- name: Publish to pypi | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
github-release: | |
needs: ["source-wheel"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get pypi artifacts | |
uses: actions/download-artifact@v4 | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
** |