This commit is contained in:
Borales
2022-11-26 23:13:48 +01:00
parent d2ca561aa5
commit 0790298b9b
5 changed files with 19 additions and 53 deletions
+1 -2
View File
@@ -1,4 +1,4 @@
import {debug, getInput, setOutput, setFailed, getState} from '@actions/core'
import {debug, getInput, setFailed, getState} from '@actions/core'
import {ensureYarnIsInstalled} from './yarn'
import {run} from './run'
@@ -12,7 +12,6 @@ const main = async () => {
debug(`Running "${cmd}" command`)
await run(cmd, {cwd})
setOutput(cmd, 'Done')
} catch (error) {
if (error instanceof Error) setFailed(error.message)
}