Skip to content

Commit 7fab79a

Browse files
authored
Merge pull request #48 from django-commons/django-commons-release-workflow
Add django-commons release workflow
2 parents 9a88e15 + 7dd35a1 commit 7fab79a

File tree

1 file changed

+102
-0
lines changed

1 file changed

+102
-0
lines changed

.github/workflows/release.yml

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI
2+
3+
on:
4+
push:
5+
tags:
6+
# Order matters, the last rule that applies to a tag
7+
# is the one that takes effect:
8+
# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-including-and-excluding-branches-and-tags
9+
- '*'
10+
# There should be no dev tags created, but to be safe,
11+
# let's not publish them.
12+
- '!*.dev*'
13+
14+
env:
15+
# Change these for your project's URLs
16+
PYPI_URL: https://pypi.org/p/django-click
17+
18+
jobs:
19+
20+
build:
21+
name: Build distribution 📦
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- uses: actions/checkout@v4
26+
- name: Set up Python
27+
uses: actions/setup-python@v5
28+
with:
29+
python-version: "3.x"
30+
- name: Install pypa/build
31+
run:
32+
python3 -m pip install build --user
33+
- name: Build a binary wheel and a source tarball
34+
run: python3 -m build
35+
- name: Store the distribution packages
36+
uses: actions/upload-artifact@v4
37+
with:
38+
name: python-package-distributions
39+
path: dist/
40+
41+
publish-to-pypi:
42+
name: >-
43+
Publish Python 🐍 distribution 📦 to PyPI
44+
needs:
45+
- build
46+
runs-on: ubuntu-latest
47+
environment:
48+
name: pypi
49+
url: ${{ env.PYPI_URL }}
50+
permissions:
51+
id-token: write # IMPORTANT: mandatory for trusted publishing
52+
steps:
53+
- name: Download all the dists
54+
uses: actions/download-artifact@v4
55+
with:
56+
name: python-package-distributions
57+
path: dist/
58+
- name: Publish distribution 📦 to PyPI
59+
uses: pypa/gh-action-pypi-publish@release/v1.10
60+
61+
github-release:
62+
name: >-
63+
Sign the Python 🐍 distribution 📦 with Sigstore
64+
and upload them to GitHub Release
65+
needs:
66+
- publish-to-pypi
67+
runs-on: ubuntu-latest
68+
69+
permissions:
70+
contents: write # IMPORTANT: mandatory for making GitHub Releases
71+
id-token: write # IMPORTANT: mandatory for sigstore
72+
73+
steps:
74+
- name: Download all the dists
75+
uses: actions/download-artifact@v4
76+
with:
77+
name: python-package-distributions
78+
path: dist/
79+
- name: Sign the dists with Sigstore
80+
uses: sigstore/[email protected]
81+
with:
82+
inputs: >-
83+
./dist/*.tar.gz
84+
./dist/*.whl
85+
- name: Create GitHub Release
86+
env:
87+
GITHUB_TOKEN: ${{ github.token }}
88+
run: >-
89+
gh release create
90+
'${{ github.ref_name }}'
91+
--repo '${{ github.repository }}'
92+
--notes ""
93+
- name: Upload artifact signatures to GitHub Release
94+
env:
95+
GITHUB_TOKEN: ${{ github.token }}
96+
# Upload to GitHub Release using the `gh` CLI.
97+
# `dist/` contains the built packages, and the
98+
# sigstore-produced signatures and certificates.
99+
run: >-
100+
gh release upload
101+
'${{ github.ref_name }}' dist/**
102+
--repo '${{ github.repository }}'

0 commit comments

Comments
 (0)