forked from als-apg/osprey
-
Notifications
You must be signed in to change notification settings - Fork 0
125 lines (102 loc) · 3.21 KB
/
Copy pathrelease.yml
File metadata and controls
125 lines (102 loc) · 3.21 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: Release to PyPI
on:
push:
tags:
- 'v*.*.*' # Triggers on version tags like v0.9.8
permissions:
contents: write # Required for creating GitHub releases
id-token: write # Required for trusted publishing to PyPI
jobs:
build:
name: Build Distribution
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for version detection
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Verify version matches tag
run: |
TAG_VERSION="${GITHUB_REF#refs/tags/v}"
# Extract version from __init__.py without importing
PACKAGE_VERSION=$(grep '__version__ = ' src/osprey/__init__.py | cut -d'"' -f2)
echo "Tag version: $TAG_VERSION"
echo "Package version: $PACKAGE_VERSION"
if [ "$TAG_VERSION" != "$PACKAGE_VERSION" ]; then
echo "❌ Version mismatch! Tag: $TAG_VERSION, Package: $PACKAGE_VERSION"
exit 1
fi
echo "✅ Version matches: $TAG_VERSION"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
python -m build
- name: Check package
run: |
twine check dist/*
- name: List built artifacts
run: |
ls -lh dist/
- name: Upload distribution artifacts
uses: actions/upload-artifact@v6
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: Publish to PyPI
needs: [build]
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/osprey-framework/
steps:
- name: Download distribution artifacts
uses: actions/download-artifact@v7
with:
name: python-package-distributions
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
create-github-release:
name: Create GitHub Release
needs: [publish-to-pypi]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Extract version from tag
id: get_version
run: |
VERSION="${GITHUB_REF#refs/tags/v}"
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Version: $VERSION"
- name: Extract release notes from CHANGELOG
id: changelog
run: |
VERSION="${{ steps.get_version.outputs.version }}"
echo "Extracting release notes for version $VERSION"
# Extract section between [VERSION] and next [VERSION] or end
sed -n "/## \[$VERSION\]/,/## \[/p" CHANGELOG.md | sed '$d' > release_notes.md
# If empty, use a generic message
if [ ! -s release_notes.md ]; then
echo "See CHANGELOG.md for details." > release_notes.md
fi
cat release_notes.md
- name: Create Release
uses: softprops/action-gh-release@v2
with:
name: Release v${{ steps.get_version.outputs.version }}
body_path: release_notes.md
draft: false
prerelease: false