-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into renovate/main-bugfixes
- Loading branch information
Showing
40 changed files
with
478 additions
and
290 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- main | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Release Drafter | ||
uses: release-drafter/release-drafter@v6.1.0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
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: [self-hosted, jammy] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Fetch tag annotations | ||
run: | | ||
# Note: we fetch the tags here instead of using actions/checkout's "fetch-tags" | ||
# because of https://github.com/actions/checkout/issues/1467 | ||
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.10" | ||
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: [self-hosted, jammy, amd64] | ||
permissions: | ||
# IMPORTANT: this permission is mandatory for trusted publishing | ||
id-token: write | ||
steps: | ||
- name: Get packages | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pypi-packages | ||
path: dist/ | ||
- name: Publish to pypi | ||
# Note: this action uses PyPI's support for Trusted Publishers | ||
# It needs a configuration on the PyPI project - see: | ||
# https://docs.pypi.org/trusted-publishers/adding-a-publisher/#github-actions | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
github-release: | ||
needs: ["source-wheel"] | ||
runs-on: [self-hosted, jammy] | ||
steps: | ||
- name: Get pypi artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pypi-packages | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
# Generate release notes on the new GH release | ||
generate_release_notes: true | ||
# Add wheel and source tarball | ||
files: | | ||
*.whl | ||
*.tar.gz |
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
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
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
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
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
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
Oops, something went wrong.