diff --git a/src/utils.ts b/src/utils.ts index 77e8b3ccb..a18e1ecfe 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -53,7 +53,7 @@ export async function addCNAME(workDir: string, content: string): Promise } const filepath = path.join(workDir, 'CNAME'); if (fs.existsSync(filepath)) { - core.warning(`CNAME already exists, skip adding CNAME`); + core.info(`CNAME already exists, skip adding CNAME`); return; } fs.writeFileSync(filepath, content + '\n');