-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (64 loc) · 2.19 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
name: PyPI release
# yamllint disable-line rule:truthy
on:
push:
# Only invoked on release tag pushes
tags:
- v*.*.*
env:
python-version: 3.8
jobs:
build:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: mandatory for Sigstore
id-token: write
steps:
### BUILDING ###
- name: Checkout repository
# yamllint disable-line rule:line-length
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Configure Python
# yamllint disable-line rule:line-length
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: ${{ env.python-version }}
- name: Build package distribution files
run: >-
pipx run tox -e clean,build
### SIGNING ###
- name: Sign pacakges with Sigstore
# yamllint disable-line rule:line-length
uses: sigstore/gh-action-sigstore-python@61f6a500bbfdd9a2a339cf033e5421951fbc1cd2 # v2.1.1
with:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
- name: Store the distribution packages
# yamllint disable-line rule:line-length
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: ${{ github.ref_name }}
path: dist/
publish:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: mandatory for Sigstore and for PyPI publishing
id-token: write
steps:
### BUILDING ###
- name: Checkout repository
# yamllint disable-line rule:line-length
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Configure Python
# yamllint disable-line rule:line-length
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: ${{ env.python-version }}
- name: Build package distribution files
run: >-
pipx run tox -e clean,build
- name: Publish to PyPI
# yamllint disable-line rule:line-length
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 # v1.8.14