diff options
author | Timmy Willison <timmywil@users.noreply.github.com> | 2024-07-17 10:13:53 -0400 |
---|---|---|
committer | Timmy Willison <timmywil@users.noreply.github.com> | 2024-07-29 12:34:41 -0400 |
commit | 53ad94f319930a5bf8cb9bd935ebd4e028741903 (patch) | |
tree | b8adbeaa9088bfbb099c2b46a57ab81db57e18d7 /build/release/README.md | |
parent | be048a027d0581746f71df7c8eb3ce1d9bd10a40 (diff) | |
download | jquery-53ad94f319930a5bf8cb9bd935ebd4e028741903.tar.gz jquery-53ad94f319930a5bf8cb9bd935ebd4e028741903.zip |
Release: correct build date in verification; other improvements
- the date is actually the date of the commit *prior*
to the tag commit, as the files are built and then committed.
- also, the CDN should still be checked for non-stable releases,
and should use different filenames (including in the map files).
- certain files should be skipped when checking the CDN.
- removed file diffing because it ended up being far too noisy,
making it difficult to find the info I needed.
- because the build script required an addition, release
verification will not work until the next release.
- print all files in failure case and whether each matched
- avoid npm script log in GH release notes changelog
- exclude changelog.md from release:clean command
- separate the post-release script from release-it for now, so we
can keep manual verification before each push. The exact command is
printed at the ened for convenience.
Closes gh-5521
Diffstat (limited to 'build/release/README.md')
-rw-r--r-- | build/release/README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/release/README.md b/build/release/README.md index 7d050d336..9aef670a1 100644 --- a/build/release/README.md +++ b/build/release/README.md @@ -84,6 +84,14 @@ The release script will not run without this token. **Note**: `preReleaseBase` is set in the npm script to `1` to ensure any pre-releases start at `.1` instead of `.0`. This does not interfere with stable releases. +1. Run the post-release script: + + ```sh + ./build/release/post-release.sh $VERSION $BLOG_URL + ``` + + This will push the release files to the CDN and jquery-dist repos, and push the commit to the jQuery repo to remove the release files and update the AUTHORS.txt URL in the package.json. + 1. Once the release is complete, publish the blog post. ## Stable releases |