-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a release in Github on new tags
Signed-off-by: Aurélien Bompard <[email protected]>
- Loading branch information
Showing
1 changed file
with
59 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
- staging | ||
- master | ||
tags: | ||
- v* | ||
- "*" | ||
pull_request: | ||
branches: | ||
- production | ||
|
@@ -48,3 +48,61 @@ jobs: | |
run: pip install --upgrade poetry | ||
- name: Run Tests | ||
run: tox | ||
|
||
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | ||
build: | ||
name: Build distribution 📦 | ||
runs-on: ubuntu-latest | ||
needs: | ||
- ci | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
|
||
- name: Install pypa/build | ||
run: python3 -m pip install build --user | ||
|
||
- name: Build a binary wheel and a source tarball | ||
run: python3 -m build | ||
|
||
- name: Store the distribution packages | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: python-package-distributions | ||
path: dist/ | ||
|
||
github-release: | ||
name: Create a GitHub Release 📢 | ||
if: startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'rc') # only create a release on final tag pushes | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write # IMPORTANT: mandatory for making GitHub Releases | ||
id-token: write # IMPORTANT: mandatory for sigstore | ||
|
||
steps: | ||
- name: Download all the dists | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: python-package-distributions | ||
path: dist/ | ||
|
||
- name: Sign the dists with Sigstore | ||
uses: sigstore/[email protected] | ||
with: | ||
inputs: >- | ||
./dist/*.tar.gz | ||
./dist/*.whl | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: dist/* | ||
fail_on_unmatched_files: true | ||
generate_release_notes: true |