Commit 7327c22
Inline publish step into release.yml to fix PyPI attestations (#173)
* chore(release): v0.10.0
* fix(release): inline build+publish into release.yml; remove workflow_call chain
PyPI Trusted Publishing attestations are incompatible with reusable
workflow chains. When release.yml invoked publish.yml via workflow_call,
the OIDC token's job_workflow_ref pointed at publish.yml while the
Sigstore cert's Build Config URI pointed at release.yml; PyPI ties both
to the same publisher and rejected the attestation as a 400. This bit
v0.10.0 (auth passed, attestation verification failed) -- see
pypa/gh-action-pypi-publish#166 and PyPI's docs on reusable workflows.
PR #171 fixed the older 'stale checkout SHA' bug, which let the build
correctly produce flights-0.10.0.* -- but exposed this attestation issue
as the next layer. Adding release.yml as a second Trusted Publisher on
PyPI doesn't help because PyPI still matches the OIDC token's
job_workflow_ref (publish.yml) to the publisher and validates the cert
(release.yml) against that publisher.
Fix:
- release.yml: inline the build/twine/upload steps as a new 'publish' job
with environment: pypi and id-token: write. Run the test matrix first
via test.yml workflow_call (no OIDC, so no attestation concern).
- publish.yml: drop the workflow_call entry point and the 'ref' input.
Keep the release: published and workflow_dispatch entry points -- those
are now exclusively for manual recovery, TestPyPI smoke tests, and the
manual GitHub Release fallback.
- docs/guides/release.md: document the new architecture, the PyPI
prerequisite (two Trusted Publishers: release.yml AND publish.yml), and
add a troubleshooting entry for the attestation failure.
Required PyPI config change: add release.yml as a Trusted Publisher
(workflow=release.yml, environment=pypi). Keep publish.yml's existing
publisher for manual paths.
* ci(publish): guard release-event publish to humans; drop duplicate test/lint steps
Address review feedback on PR #173:
1. Duplicate-publish guard. release.yml now publishes inline AND creates the
tag/GitHub Release via the bot. Guard publish.yml's pypi-publish job so a
release event only auto-publishes when the release was created by a human
(github.actor != github-actions[bot]); workflow_dispatch publishes only
when the operator selects the pypi environment. This prevents a second,
racing publish that would 400 with "File already exists" if a release-event
path ever fires (e.g. if release.yml is switched to a PAT for branch
protection). The workflow_dispatch recovery path and human-created-release
fallback both still work.
2. Remove the single-version "Run tests" step (and the equally redundant ruff
"Check code quality" step) from publish.yml's release-build job. Both are
already covered by the test.yml matrix that gates the job via needs: [test]
(lint.yml + railway-build + the 4-version pytest matrix). Apply the same
cleanup to release.yml's inline publish job for consistency. release-build
and the inline publish job now just build, twine-check, and publish.
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>1 parent 9ef5ec5 commit 7327c22
5 files changed
Lines changed: 118 additions & 51 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
3 | 14 | | |
4 | 15 | | |
5 | 16 | | |
| |||
13 | 24 | | |
14 | 25 | | |
15 | 26 | | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
37 | | - | |
38 | 36 | | |
39 | 37 | | |
40 | 38 | | |
41 | 39 | | |
42 | 40 | | |
43 | 41 | | |
44 | 42 | | |
45 | | - | |
46 | | - | |
47 | 43 | | |
48 | 44 | | |
49 | 45 | | |
| |||
56 | 52 | | |
57 | 53 | | |
58 | 54 | | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | 55 | | |
68 | 56 | | |
69 | 57 | | |
| |||
80 | 68 | | |
81 | 69 | | |
82 | 70 | | |
83 | | - | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
84 | 77 | | |
85 | 78 | | |
86 | 79 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
232 | | - | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
233 | 235 | | |
234 | 236 | | |
235 | | - | |
| 237 | + | |
236 | 238 | | |
237 | | - | |
238 | | - | |
239 | | - | |
240 | | - | |
241 | | - | |
242 | 239 | | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
243 | 245 | | |
244 | 246 | | |
245 | | - | |
246 | | - | |
247 | 247 | | |
248 | | - | |
| 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 | + | |
249 | 286 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
22 | 36 | | |
23 | 37 | | |
24 | 38 | | |
| |||
65 | 79 | | |
66 | 80 | | |
67 | 81 | | |
68 | | - | |
69 | | - | |
70 | | - | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
71 | 91 | | |
72 | 92 | | |
73 | 93 | | |
74 | 94 | | |
75 | | - | |
| 95 | + | |
| 96 | + | |
76 | 97 | | |
77 | 98 | | |
78 | 99 | | |
| |||
88 | 109 | | |
89 | 110 | | |
90 | 111 | | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
91 | 117 | | |
92 | 118 | | |
93 | 119 | | |
94 | | - | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
95 | 132 | | |
96 | 133 | | |
97 | 134 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments