diff --git a/dist/index.js b/dist/index.js index 92fd8bc..d7a1595 100644 --- a/dist/index.js +++ b/dist/index.js @@ -61411,6 +61411,7 @@ async function run() { core.setOutput(OUTPUT_FFMPEG_PATH, output.path); core.setOutput(OUTPUT_CACHE_HIT, output.cacheHit); } catch (error) { + core.error(error.cause); core.setFailed(error); } } diff --git a/src/action.js b/src/action.js index 687be71..af5f7e7 100644 --- a/src/action.js +++ b/src/action.js @@ -54,6 +54,7 @@ async function run() { core.setOutput(OUTPUT_FFMPEG_PATH, output.path); core.setOutput(OUTPUT_CACHE_HIT, output.cacheHit); } catch (error) { + core.error(error.cause); core.setFailed(error); } }