Fix release script issue (#5459)

release
Louis Lam 6 days ago committed by GitHub
parent 46f771e9a2
commit 845c6e1189
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -101,12 +101,30 @@ export function buildImage(repoNames, tags, target, buildArgs = "", dockerfile =
/** /**
* Check if the version already exists on Docker Hub * Check if the version already exists on Docker Hub
* TODO: use semver to compare versions if it is greater than the previous? * TODO: use semver to compare versions if it is greater than the previous?
* @param {string} repoName Docker Hub repository name * @param {string[]} repoNames repository name (Only check the name with single slash)
* @param {string} version Version to check * @param {string} version Version to check
* @returns {void} * @returns {void}
*/ */
export async function checkTagExists(repoName, version) { export async function checkTagExists(repoNames, version) {
console.log(`Checking if version ${version} exists on Docker Hub`); // Skip if the tag is not on Docker Hub
// louislam/uptime-kuma
let dockerHubRepoNames = repoNames.filter((name) => {
return name.split("/").length === 2;
});
for (let repoName of dockerHubRepoNames) {
await checkTagExistsSingle(repoName, version);
}
}
/**
* Check if the version already exists on Docker Hub
* @param {string} repoName repository name
* @param {string} version Version to check
* @returns {Promise<void>}
*/
export async function checkTagExistsSingle(repoName, version) {
console.log(`Checking if version ${version} exists on Docker Hub:`, repoName);
// Get a list of tags from the Docker Hub repository // Get a list of tags from the Docker Hub repository
let tags = []; let tags = [];

Loading…
Cancel
Save