Skip to content

Commit

Permalink
fix: copying output
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-atypon committed Jan 17, 2025
1 parent e70d5a5 commit 308e62d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hooks",
"version": "0.6.77",
"version": "0.6.78",
"description": "Three projects are included - k8s: a kubernetes hook implementation that spins up pods dynamically to run a job - docker: A hook implementation of the runner's docker implementation - A hook lib, which contains shared typescript definitions and utilities that the other packages consume",
"main": "",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion packages/k8s/src/hooks/run-script-step.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export async function runScriptStep(
)
}
} catch (err) {
core.debug(`execPodStep failed: ${JSON.stringify(err)}`)
core.error(`runScriptStep full error: ${JSON.stringify(err)}`)
const message = (err as any)?.response?.body?.message || err
throw new Error(`failed to run script step: ${message}`)
} finally {
Expand Down

0 comments on commit 308e62d

Please sign in to comment.