From 93de0ec03bbf4c9790bdd9647c88f20930b373bc Mon Sep 17 00:00:00 2001 From: florianow <64468897+florianow@users.noreply.github.com> Date: Wed, 6 Nov 2024 17:16:57 +0100 Subject: [PATCH] chore: changing pipeline --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index 44afb9e..ee5ab49 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,6 +19,9 @@ async function run() { core.debug(`Temporary directory: ${tempDir}`); console.log(`Temporary directory: ${tempDir}`); // This will also print the path to the console + // Set the temporary directory path as an output + core.setOutput('temp_directory', tempDir); + const tokenFilePath = path.join(tempDir, 'meshstack_token.json'); const tokenData = JSON.parse(fs.readFileSync(tokenFilePath, 'utf8')); const token = tokenData.token;