mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-04-02 06:22:20 +00:00
Better log
This commit is contained in:
parent
f167d9b5cc
commit
b1d48ccf11
1 changed files with 2 additions and 2 deletions
|
@ -106,8 +106,6 @@ export function buildImage(repoNames, tags, target, buildArgs = "", dockerfile =
|
|||
* @returns {void}
|
||||
*/
|
||||
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) => {
|
||||
|
@ -126,6 +124,8 @@ export async function checkTagExists(repoNames, version) {
|
|||
* @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
|
||||
let tags = [];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue