import * as core from '@actions/core' import {PrepareEnvironAndRunWerfCommand} from './common' async function run(): Promise { try { await PrepareEnvironAndRunWerfCommand(['cleanup']) } catch (error) { core.setFailed(error.message) } } run()