Skip to content

docs(changelog): add 1.23.0 release notes (#515) #14

docs(changelog): add 1.23.0 release notes (#515)

docs(changelog): add 1.23.0 release notes (#515) #14

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@v3
with:
name: pypi-packages
path: dist/
github-release:
needs: ["source-wheel"]
runs-on: ubuntu-latest
steps:
- name: Get pypi artifacts
uses: actions/download-artifact@v3
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
**