-
Notifications
You must be signed in to change notification settings - Fork 1
88 lines (76 loc) · 2.02 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
77
78
79
80
81
82
83
84
85
86
87
88
name: Release
on:
pull_request:
release:
types: [ released ]
jobs:
tests:
name: 'Unit tests & type check'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Run tests
run: |
set -euo pipefail
pipx install poetry
poetry install --no-interaction
poetry run pytest
poetry run black --check .
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pipx install poetry
poetry install --no-interaction
- name: Build package
run: poetry build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
release:
name: 'Release'
runs-on: ubuntu-latest
needs:
- build
- tests
environment:
name: pypi
url: https://pypi.org/p/pyfluent-iterables
permissions:
id-token: write
contents: write
steps:
- name: Download artifact
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: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
ls dist
# gh release upload '${{ github.ref_name }}' dist/* --repo '${{ github.repository }}'
# - name: Publish distribution 📦 to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1