diff --git a/dist/index.js b/dist/index.js index 6b9b5a8..9013fb4 100644 --- a/dist/index.js +++ b/dist/index.js @@ -145245,6 +145245,7 @@ function run() { } catch (error) { core.setFailed(error.message); + console.log('sanity check'); } }); } diff --git a/src/upload-artifact.ts b/src/upload-artifact.ts index 3706d2f..8a75345 100644 --- a/src/upload-artifact.ts +++ b/src/upload-artifact.ts @@ -62,6 +62,7 @@ async function run(): Promise { } } catch (error) { core.setFailed((error as Error).message) + console.log('sanity check') } }