1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-05-07 14:09:30 +02:00

src: change warning to debug

This commit is contained in:
Aditya Maru 2025-01-01 13:16:46 +04:00
parent 4ed3ba5c73
commit 34ea2f79e5
3 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ const execAsync = promisify(exec);
async function joinTailnet(): Promise<void> {
const token = process.env.BLACKSMITH_TAILSCALE_TOKEN;
if (!token || token === 'unset') {
core.warning('BLACKSMITH_TAILSCALE_TOKEN environment variable not set, skipping tailnet join');
core.debug('BLACKSMITH_TAILSCALE_TOKEN environment variable not set, skipping tailnet join');
return;
}