Skip to content

Commit

Permalink
ci: add workflow to automate releases
Browse files Browse the repository at this point in the history
This workflow is similar to starbase's current one, with a few differences:

- It uses self-hosted runners;
- It uses Trusted Publishers to publish to PyPI;
- It constrains the artifacts that are attached to the GH release.
  • Loading branch information
tigarmo committed Jul 4, 2024
1 parent ccfe498 commit 0115c28
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/release-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Release
on:
push:
tags:
# These tags should be protected, remember to enable the rule:
# https://github.com/canonical/craft-application/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
with:
fetch-tags: true
fetch-depth: 1
- name: Check git tag
run: |
# Print out the output of 'git describe' for debugging
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]
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:
# Add wheel and source tarball
files: |
*.whl
*.tar.gz

0 comments on commit 0115c28

Please sign in to comment.