.github: Add release workflow

Upload a pypi package when a Github release is published.

Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
This commit is contained in:
Pieter De Gendt 2024-09-18 19:05:23 +02:00 committed by Marc Herbert
parent 38aae907fd
commit 04b7bcb6d3
1 changed files with 40 additions and 0 deletions

40
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,40 @@
name: Release
# This workflow follows Pypi guidelines for publishing using trusted publishers
# See https://docs.pypi.org/trusted-publishers/using-a-publisher/ for more details.
on:
release:
types: [published]
jobs:
package:
name: Package
uses: ./.github/workflows/package.yml
release:
name: Release
needs: [package]
runs-on: ubuntu-latest
# Make the GH environment explicit
environment: release
# Mandatory for trusted publishing
permissions:
contents: write
id-token: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
path: dist/
- name: Upload release assets
uses: softprops/action-gh-release@v2
with:
files: dist/*.whl
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1