diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2026-03-09 10:50:44 -0300 |
|---|---|---|
| committer | Natalia <124304+nessita@users.noreply.github.com> | 2026-03-16 22:16:24 -0300 |
| commit | b1d9ea4ff3c8e8597a5ff6c686a681bbaf7240be (patch) | |
| tree | 02898bd8c1e5ca0cfa0a29f447bb61ce33d456f3 /scripts/do_django_release.py | |
| parent | 385678e529a6740a339d54a7a21ec623c826c22c (diff) | |
[4.2.x] Combined scripts confirm_release.sh and test_new_version.sh into verify_release.sh.
This reuses the same download for both artifacts and checks both GPG
signature and minimal correctness in the same script. Docs and script
do_django_release.py were updated.
Backport of 3abf89887993140d28676f26420ee0d46a617f51 from main.
Diffstat (limited to 'scripts/do_django_release.py')
| -rwxr-xr-x | scripts/do_django_release.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/do_django_release.py b/scripts/do_django_release.py index b3cc0248ac..3d5bbb5210 100755 --- a/scripts/do_django_release.py +++ b/scripts/do_django_release.py @@ -206,12 +206,9 @@ print( f"* Signed checksum {checksum_file_path}.asc" ) -# Test the new version and confirm the signature using Jenkins. -print("\n==> ACTION Test the release artifacts:") -print(f"VERSION={django_version} test_new_version.sh") - -print("\n==> ACTION Run confirm-release job:") -print(f"VERSION={django_version} confirm_release.sh") +# Verify the release artifacts (GPG signature, checksums, and smoke test). +print("\n==> ACTION Verify the release artifacts:") +print(f"VERSION={django_version} verify_release.sh") # Upload to PyPI. print("\n==> ACTION Upload to PyPI, ensure your release venv is activated:") |
