From 553026ca0b9938d600482a6d2230db9551523206 Mon Sep 17 00:00:00 2001 From: Dino Pacandi Date: Thu, 31 Oct 2024 10:12:15 +0100 Subject: [PATCH] Fix comparison link generation --- .github/scripts/generate-release-body.ts | 69 +++++++++++------------- 1 file changed, 30 insertions(+), 39 deletions(-) diff --git a/.github/scripts/generate-release-body.ts b/.github/scripts/generate-release-body.ts index 884a1c0c4..d54d26b75 100644 --- a/.github/scripts/generate-release-body.ts +++ b/.github/scripts/generate-release-body.ts @@ -8,58 +8,49 @@ import path from "path"; type Await = T extends PromiseLike ? U : T; type Commits = Await>["data"]["commits"]; -function getCompareLink(packageName: string, previousTag: string, newTag: string) { - // Previous - let previousPackage: string; +function getPackageInfo(tag: string, packageName: string) { + let packageInfo: string; try { - previousPackage = execSync( - `git show ${previousTag}:../../Cargo.lock | grep ${packageName}? | head -1 | grep -o '".*"'` + packageInfo = execSync( + `git show ${tag}:../../Cargo.lock | grep ${packageName}? | grep source | head -1 | grep -o '".*"'` ).toString(); } catch (error) { console.error('An error occurred while executing the shell command:', error); - return "" + return null; } - const previousCommitTmp = /#([0-9a-f]*)/g.exec(previousPackage); - if (previousCommitTmp == null) { // regexp didn't match - return "" - }; - const previousCommit = previousCommitTmp[1].slice(0, 8); - - const previousRepoTmp = /(https:\/\/.*)\?/g.exec(previousPackage); - if (previousRepoTmp == null) { - return "" - }; - const previousRepo = previousRepoTmp[1]; + const commitMatch = /#([0-9a-f]*)/g.exec(packageInfo); + if (commitMatch == null) { + return null; + } + const commit = commitMatch[1].slice(0, 8); - // New - let newPackage: string; - try { - newPackage = execSync( - `git show ${newTag}:../../Cargo.lock | grep ${packageName}? | head -1 | grep -o '".*"'` - ).toString(); - } catch (error) { - console.error('An error occurred while executing the shell command:', error); - return "" + const repoMatch = /(https:\/\/.*)\?/g.exec(packageInfo); + if (repoMatch == null) { + return null; } + const repo = repoMatch[1]; - const newCommitTmp = /#([0-9a-f]*)/g.exec(newPackage) - if (newCommitTmp == null) { - return "" - }; - const newCommit = newCommitTmp[1].slice(0, 8); + return { commit, repo }; +} - const newRepoTmp = /(https:\/\/.*)\?/g.exec(newPackage); - if (newRepoTmp == null) { - return "" +function getCompareLink(packageName: string, previousTag: string, newTag: string) { + const previousPackageInfo = getPackageInfo(previousTag, packageName); + if (previousPackageInfo == null) { + return ""; } - const newRepo = newRepoTmp[1]; - const newRepoOrganization = /github.com\/([^\/]*)/g.exec(newRepo)[1]; + + const newPackageInfo = getPackageInfo(newTag, packageName); + if (newPackageInfo == null) { + return ""; + } + + const newRepoOrganization = /github.com\/([^\/]*)/g.exec(newPackageInfo.repo)[1]; const diffLink = - previousRepo !== newRepo - ? `${previousRepo}/compare/${previousCommit}...${newRepoOrganization}:${newCommit}` - : `${previousRepo}/compare/${previousCommit}...${newCommit}`; + previousPackageInfo.repo !== newPackageInfo.repo + ? `${previousPackageInfo.repo}/compare/${previousPackageInfo.commit}...${newRepoOrganization}:${newPackageInfo.commit}` + : `${previousPackageInfo.repo}/compare/${previousPackageInfo.commit}...${newPackageInfo.commit}`; return diffLink; }