-
Notifications
You must be signed in to change notification settings - Fork 309
186 lines (165 loc) · 5.8 KB
/
Copy pathrelease-artifacts.yml
File metadata and controls
186 lines (165 loc) · 5.8 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
name: Release Artifacts
on:
pull_request:
paths:
- ".github/workflows/release-artifacts.yml"
- "examples/release-artifacts-smoke.py"
- "loopx/**"
- "pyproject.toml"
- "README.md"
- "scripts/release_artifacts.py"
release:
types: [published]
workflow_dispatch:
inputs:
tag:
description: "Existing GitHub Release tag containing this release tooling"
required: true
type: string
permissions:
contents: read
concurrency:
group: release-artifacts-${{ github.event.release.tag_name || inputs.tag || github.ref }}
cancel-in-progress: false
jobs:
build:
if: github.repository == 'huangruiteng/loopx'
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
id-token: write
attestations: write
outputs:
release-tag: ${{ steps.identity.outputs.release-tag }}
steps:
- name: Check out release source
uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ github.event.release.tag_name || inputs.tag || github.sha }}
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: pip
- name: Resolve and validate release identity
id: identity
env:
EVENT_RELEASE_TAG: ${{ github.event.release.tag_name }}
INPUT_RELEASE_TAG: ${{ inputs.tag }}
run: |
set -euo pipefail
release_tag="${EVENT_RELEASE_TAG:-${INPUT_RELEASE_TAG:-}}"
if [[ -z "${release_tag}" ]]; then
release_tag="$(python scripts/release_artifacts.py expected-tag)"
fi
python scripts/release_artifacts.py validate-tag "${release_tag}"
source_date_epoch="$(git show -s --format=%ct HEAD)"
echo "release-tag=${release_tag}" >> "${GITHUB_OUTPUT}"
echo "RELEASE_TAG=${release_tag}" >> "${GITHUB_ENV}"
echo "SOURCE_DATE_EPOCH=${source_date_epoch}" >> "${GITHUB_ENV}"
echo "PYTHONHASHSEED=0" >> "${GITHUB_ENV}"
- name: Install release build tools
run: python -m pip install --disable-pip-version-check build==1.4.4 twine==6.2.0
- name: Build wheel and source distribution
run: python -m build --sdist --wheel --outdir dist/packages
- name: Normalize source distribution metadata
run: >-
python scripts/release_artifacts.py normalize-sdist
--dist-dir dist/packages
--source-date-epoch "${SOURCE_DATE_EPOCH}"
- name: Validate package metadata
run: python -m twine check dist/packages/*
- name: Generate and verify checksums
run: |
set -euo pipefail
python scripts/release_artifacts.py write-checksums \
--dist-dir dist/packages \
--output dist/SHA256SUMS
python scripts/release_artifacts.py verify-checksums \
--dist-dir dist/packages \
--checksum-file dist/SHA256SUMS
- name: Verify wheel in a clean environment
run: |
set -euo pipefail
python -m venv "${RUNNER_TEMP}/loopx-wheel"
"${RUNNER_TEMP}/loopx-wheel/bin/python" -m pip install \
--disable-pip-version-check \
--no-deps \
dist/packages/*.whl
test "$("${RUNNER_TEMP}/loopx-wheel/bin/loopx" --version)" = \
"loopx ${RELEASE_TAG#v}"
- name: Exercise release contract smoke
run: python examples/release-artifacts-smoke.py
- name: Attest release packages and checksum manifest
if: github.event_name != 'pull_request'
uses: actions/attest@v4
with:
subject-path: |
dist/packages/*
dist/SHA256SUMS
- name: Upload validated release bundle
uses: actions/upload-artifact@v7
with:
name: loopx-${{ steps.identity.outputs.release-tag }}
path: dist
if-no-files-found: error
retention-days: 30
upload-release:
if: github.event_name != 'pull_request'
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
steps:
- name: Check out release source
uses: actions/checkout@v7
with:
ref: ${{ needs.build.outputs.release-tag }}
- name: Download validated release bundle
uses: actions/download-artifact@v7
with:
name: loopx-${{ needs.build.outputs.release-tag }}
path: dist
- name: Verify checksums before upload
run: >-
python scripts/release_artifacts.py verify-checksums
--dist-dir dist/packages
--checksum-file dist/SHA256SUMS
- name: Upload immutable GitHub Release assets
env:
GH_TOKEN: ${{ github.token }}
RELEASE_TAG: ${{ needs.build.outputs.release-tag }}
run: |
set -euo pipefail
gh release view "${RELEASE_TAG}" --repo "${GITHUB_REPOSITORY}" >/dev/null
gh release upload "${RELEASE_TAG}" \
dist/packages/* \
dist/SHA256SUMS \
--repo "${GITHUB_REPOSITORY}"
publish-pypi:
if: >-
github.event_name != 'pull_request' &&
vars.PYPI_PUBLISH_ENABLED == 'true'
needs:
- build
- upload-release
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
id-token: write
environment:
name: pypi
url: https://pypi.org/project/loopx/
steps:
- name: Download validated release bundle
uses: actions/download-artifact@v7
with:
name: loopx-${{ needs.build.outputs.release-tag }}
path: dist
- name: Publish distributions with PyPI Trusted Publishing
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # release/v1
with:
packages-dir: dist/packages