-
Notifications
You must be signed in to change notification settings - Fork 362
288 lines (248 loc) · 8.61 KB
/
Copy pathrelease.yml
File metadata and controls
288 lines (248 loc) · 8.61 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
name: Release
on:
push:
branches:
- master
- v[0-9]+.[0-9]+.[0-9]+*
release:
types:
- published
jobs:
prep:
name: Prepare release
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref_name != 'master' }}
permissions:
contents: write
defaults:
run:
shell: bash
steps:
- name: Checkout release branch
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup Python
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
- name: Install FloPy
run: uv sync --all-extras
- name: Install MODFLOW
run: |
mkdir -p ~/.local/bin
uv run get-modflow ~/.local/bin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NOTE: assumes the MF6 module has been generated already.
# we do that manually to exclude models under development.
# if this becomes unnecessary, uncomment the lines below.
# - name: Sync MF6 module
# run: uv run python -m flopy.mf6.utils.generate_classes
- name: Update version numbers
id: version
run: |
# extract version from branch name
ref="${{ github.ref_name }}"
ver="${ref#"v"}"
# update version files
if [[ "$ver" == *"rc"* ]]; then
uv run scripts/update_version.py -v "${ver%"rc"}"
else
uv run scripts/update_version.py -v "$ver"
fi
# show version and set output
uv run python -c "import flopy; print(f'FloPy version: {flopy.__version__}')"
echo "version=${ver#"v"}" >> $GITHUB_OUTPUT
- name: Format and lint Python files
run: |
uvx ruff format
uvx ruff check --fix
uvx ruff format flopy/mf6/modflow/*.py
uvx ruff check --fix flopy/mf6/modflow/*.py
- name: Run tests
working-directory: autotest
run: uv run pytest -v -m="not example and not regression" -n=auto --durations=0 --keep-failed=.failed --dist loadfile
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload failed test outputs
uses: actions/upload-artifact@v7
if: failure()
with:
name: failed-outputs-${{ github.run_id }}
path: |
./autotest/.failed/**
- name: Generate changelog
id: cliff
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --verbose --unreleased --tag ${{ steps.version.outputs.version }}
env:
OUTPUT: CHANGELOG.md
- name: Update changelog
run: |
# substitute full group names
sed -i 's/#### Ci/#### Continuous integration/' CHANGELOG.md
sed -i 's/#### Feat/#### New features/' CHANGELOG.md
sed -i 's/#### Fix/#### Bug fixes/' CHANGELOG.md
sed -i 's/#### Refactor/#### Refactoring/' CHANGELOG.md
sed -i 's/#### Test/#### Testing/' CHANGELOG.md
# prepend release changelog to cumulative changelog
clog=".docs/md/version_changes.md"
temp="version_changes.md"
echo "$(tail -n +2 $clog)" > $clog
cat CHANGELOG.md $clog > $temp
sudo mv $temp $clog
sed -i '1i # Changelog' $clog
- name: Upload changelog
uses: actions/upload-artifact@v7
with:
name: changelog
path: CHANGELOG.md
- name: Push release branch
run: |
rm CHANGELOG.md
git config core.sharedRepository true
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add flopy docs .docs CITATION.cff README.md version.txt
git commit -m "ci(release): set version to ${{ steps.version.outputs.version }}, update components from DFN files, update changelog"
git push origin "${{ github.ref_name }}"
pr:
name: Draft release PR
needs: prep
if: ${{ github.event_name == 'push' && !(contains(github.ref_name, 'rc')) }}
runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout release branch
uses: actions/checkout@v7
with:
ref: ${{ github.ref_name }}
- name: Draft pull request
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
ref="${{ github.ref_name }}"
ver="${ref#"v"}"
title="Release $ver"
body='
# FloPy '$ver'
The release can be approved by merging this pull request into `master`. This will trigger a final job to publish the release to PyPI.
'
gh pr create -B "master" -H "$ref" --title "$title" --draft --body "$body"
release:
name: Draft release
# runs only when changes are merged to master
if: ${{ github.event_name == 'push' && github.ref_name == 'master' }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout master branch
uses: actions/checkout@v7
with:
ref: master
# actions/download-artifact won't look at previous workflow runs but we need to in order to get changelog
- name: Download artifacts
uses: dawidd6/action-download-artifact@v24
- name: Draft release
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
version=$(cat version.txt)
title="FloPy $version"
notes=$(cat changelog/CHANGELOG.md)
gh release create "$version" \
--target master \
--title "$title" \
--notes "$notes" \
--draft \
--latest
publish:
name: Publish package
# runs only after release is published (manually promoted from draft)
if: ${{ github.event_name == 'release' }}
runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
id-token: write # mandatory for trusted publishing
environment: # requires a 'release' environment in repo settings
name: release
url: https://pypi.org/p/flopy
steps:
- name: Checkout master branch
uses: actions/checkout@v7
with:
ref: master
- name: Setup Python
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
- name: Build package
run: uv build
- name: Check package
run: uvx twine check --strict dist/*
- name: Publish package
run: uv publish --verbose --trusted-publishing always
reset:
name: Draft develop reset PR
# runs after a release is published, opens a PR merging master back into develop
if: ${{ github.event_name == 'release' }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
defaults:
run:
shell: bash
steps:
- name: Checkout master branch
uses: actions/checkout@v7
with:
ref: master
fetch-depth: 0
- name: Setup Python
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
- name: Install FloPy
run: uv sync --all-extras
- name: Update version numbers
id: version
run: |
ver=$(cat version.txt)
next=$(uv run scripts/update_version.py --post-release)
echo "version=$ver" >> $GITHUB_OUTPUT
echo "next=$next" >> $GITHUB_OUTPUT
- name: Format and lint Python files
run: |
uvx ruff format flopy/version.py
uvx ruff check --fix flopy/version.py
- name: Draft pull request
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
ver="${{ steps.version.outputs.version }}"
next="${{ steps.version.outputs.next }}"
branch="post-release-$ver-reset"
git config core.sharedRepository true
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git switch -c "$branch"
git add flopy/version.py version.txt CITATION.cff README.md docs/PyPI_release.md
git commit -m "ci(release): update version to $next"
git push origin "$branch"
body='
# Reset `develop` after release '$ver'
Merge (do not squash) this pull request to bring `master` back into `develop` and set the development version to `'$next'`.
'
gh pr create -B "develop" -H "$branch" --title "Reset develop after release $ver" --draft --body "$body"