-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (53 loc) · 1.3 KB
/
publishing.yaml
File metadata and controls
60 lines (53 loc) · 1.3 KB
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
name: Publishing
on: push
jobs:
build:
name: Build
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
- name: Setup Python
run: uv python install 3.14
- name: Build wheel and source tarball
run: uv build
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
validate:
name: Validate dist
needs:
- build
permissions: {}
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
with:
name: python-package-distributions
path: dist/
- uses: astral-sh/setup-uv@v7
- name: Setup Python
run: uv python install 3.14
- name: Validate dist
run: uv run --with twine twine check dist/*
publish:
environment:
name: pypi
url: https://pypi.org/p/perdoo
if: startsWith(github.ref, 'refs/tags/')
name: Publish to PyPI
needs:
- build
- validate
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
with:
name: python-package-distributions
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1