Skip to content

Commit 3e612ae

Browse files
authored
Release: ensure builds have the proper version
- order hooks in execution order - update workflow actions Closes gh-5519
1 parent 1fa8df5 commit 3e612ae

File tree

5 files changed

+33
-10
lines changed

5 files changed

+33
-10
lines changed

.github/workflows/verify-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
NODE_VERSION: 20.x
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
24+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2525

2626
- name: Use Node.js ${{ env.NODE_VERSION }}
27-
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
27+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
2828
with:
2929
node-version: ${{ env.NODE_VERSION }}
3030

.release-it.cjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ module.exports = {
1010
preReleaseBase: 1,
1111
hooks: {
1212
"before:init": "bash ./build/release/pre-release.sh",
13-
"before:git:release": "git add -f dist/ dist-module/ changelog.md",
1413
"after:version:bump":
1514
"sed -i 's/main\\/AUTHORS.txt/${version}\\/AUTHORS.txt/' package.json",
16-
"after:release":
17-
`bash ./build/release/post-release.sh \${version} ${ blogURL }`
15+
"after:bump": "cross-env VERSION=${version} npm run build:all",
16+
"before:git:release": "git add -f dist/ dist-module/ changelog.md",
17+
"after:release": `bash ./build/release/post-release.sh \${version} ${ blogURL }`
1818
},
1919
git: {
2020
changelog: "npm run release:changelog -- ${from} ${to}",

build/release/verify.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ const REGISTRY_URL = "https://registry.npmjs.org/jquery";
2424

2525
const rstable = /^(\d+\.\d+\.\d+)$/;
2626

27-
export async function verifyRelease( { version } = {} ) {
27+
async function verifyRelease( { version } = {} ) {
2828
if ( !version ) {
2929
version = process.env.VERSION || ( await getLatestVersion() );
3030
}
31-
console.log( `Checking jQuery ${ version }...` );
3231
const release = await buildRelease( { version } );
3332

33+
console.log( `Verifying jQuery ${ version }...` );
34+
3435
let verified = true;
3536

3637
// Only check stable versions against the CDN
@@ -139,8 +140,8 @@ async function buildRelease( { version } ) {
139140
.filter( ( dirent ) => dirent.isFile() )
140141
.map( async( dirent ) => ( {
141142
name: dirent.name,
142-
path: path.basename( dirent.path ),
143-
contents: await readFile( path.join( dirent.path, dirent.name ), "utf8" )
143+
path: path.basename( dirent.parentPath ),
144+
contents: await readFile( path.join( dirent.parentPath, dirent.name ), "utf8" )
144145
} ) )
145146
);
146147

@@ -196,3 +197,5 @@ async function sumTarball( filepath ) {
196197
const unzipped = await gunzip( contents );
197198
return shasum( unzipped );
198199
}
200+
201+
verifyRelease();

package-lock.json

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"release:changelog": "node build/release/changelog.js",
6565
"release:clean": "rimraf tmp --glob changelog.{md,html} contributors.html",
6666
"release:dist": "node build/release/dist.js",
67-
"release:verify": "node -e \"(async () => { const { verifyRelease } = await import('./build/release/verify.js'); verifyRelease() })()\"",
67+
"release:verify": "node build/release/verify.js",
6868
"start": "node -e \"(async () => { const { buildDefaultFiles } = await import('./build/tasks/build.js'); buildDefaultFiles({ watch: true }) })()\"",
6969
"test:bundlers": "npm run pretest && npm run build:all && node test/bundler_smoke_tests/run-jsdom-tests.js",
7070
"test:browser": "npm run pretest && npm run build:main && npm run test:unit -- -b chrome -b firefox -h",
@@ -119,6 +119,7 @@
119119
"commitplease": "3.2.0",
120120
"concurrently": "8.2.2",
121121
"core-js-bundle": "3.37.1",
122+
"cross-env": "7.0.3",
122123
"diff": "5.2.0",
123124
"eslint": "8.57.0",
124125
"eslint-config-jquery": "3.0.2",

0 commit comments

Comments
 (0)