diff --git a/src/index.js b/src/index.js index 44e9f01..5898de9 100644 --- a/src/index.js +++ b/src/index.js @@ -62,6 +62,11 @@ async function uploadArtifacts(files, options = {}) { async function run() { const outputFilePath = 'OUTPUT.md'; + if (process.env.DEBUG === 'true') { + core.info('DEBUG mode enabled - uploading artifacts...'); + } else { + core.info('DEBUG mode disabled...'); + } try { // Get environment variables const apiUrl = process.env.STREETRACE_API_URL || 'https://api.streetrace.ai/';