Skip to content

Commit 091309b

Browse files
committed
added an info for login successfull
1 parent ab33bad commit 091309b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ async function run() {
5959
const tempDir = process.env.RUNNER_TEMP || os.tmpdir();
6060
const tokenFilePath = path.join(tempDir, 'meshstack_token.json');
6161
fs.writeFileSync(tokenFilePath, JSON.stringify({ token }));
62+
core.info('meshStack auth successful.');
6263
// Register the source
6364
const response = await axios_1.default.post(`${baseUrl}/api/meshobjects/meshbuildingblockruns/${bbRunUuid}/status/source`, {
6465
source: {

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ async function run() {
3333
const tempDir = process.env.RUNNER_TEMP || os.tmpdir();
3434
const tokenFilePath = path.join(tempDir, 'meshstack_token.json');
3535
fs.writeFileSync(tokenFilePath, JSON.stringify({ token }));
36+
core.info('meshStack auth successful.');
37+
3638

3739
// Register the source
3840
const response = await axios.post(

0 commit comments

Comments
 (0)