-
Notifications
You must be signed in to change notification settings - Fork 30
85 lines (71 loc) · 2.27 KB
/
Copy pathrelease.yml
File metadata and controls
85 lines (71 loc) · 2.27 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
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
# Build and publish to PyPI on GitHub release creation or manual trigger.
# Uses OIDC trusted publishing — no stored PyPI token required.
# Pure Python package — a universal wheel suffices; no cibuildwheel needed.
name: Release
on:
release:
types: [created]
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
verify_version:
name: Verify tag matches package version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check version
# Skip check on manual workflow_dispatch runs (no release tag exists)
if: github.event_name == 'release'
run: |
TAG="${GITHUB_REF_NAME#v}"
PKG=$(python3 -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['version'])")
echo "Tag version : $TAG"
echo "Package version: $PKG"
[ "$TAG" = "$PKG" ] || { echo "ERROR: tag v$TAG does not match pyproject.toml version $PKG"; exit 1; }
build:
name: Build sdist and wheel
needs: verify_version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Build sdist and wheel
run: pipx run build
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
smoke_test:
name: Smoke-test wheel
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Install wheel (pulls deps from PyPI)
run: pip install --find-links dist machinevision-toolbox-python
- name: Smoke test
run: python -c "import machinevisiontoolbox; print('OK', machinevisiontoolbox.__version__)"
upload_pypi:
name: Publish to PyPI
needs: [build, smoke_test]
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # required for OIDC trusted publishing
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true