Skip to content

Commit

Permalink
print cause
Browse files Browse the repository at this point in the history
  • Loading branch information
federicocarboni committed Mar 22, 2024
1 parent 8c47ddc commit 5b64c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down
1 change: 1 addition & 0 deletions src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 5b64c10

Please sign in to comment.