mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-05 04:42:34 +02: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}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
export async function checkTagExists(repoNames, 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
|
// Skip if the tag is not on Docker Hub
|
||||||
// louislam/uptime-kuma
|
// louislam/uptime-kuma
|
||||||
let dockerHubRepoNames = repoNames.filter((name) => {
|
let dockerHubRepoNames = repoNames.filter((name) => {
|
||||||
|
@ -126,6 +124,8 @@ export async function checkTagExists(repoNames, version) {
|
||||||
* @returns {Promise<void>}
|
* @returns {Promise<void>}
|
||||||
*/
|
*/
|
||||||
export async function checkTagExistsSingle(repoName, version) {
|
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…
Add table
Reference in a new issue