v4-beta-http-patch
Rob Herley 2023-12-06 18:22:49 -05:00
parent 0b8860f406
commit 797c550946
No known key found for this signature in database
GPG Key ID: D1602042C3543B06
2 changed files with 2 additions and 0 deletions

1
dist/index.js vendored
View File

@ -145245,6 +145245,7 @@ function run() {
} }
catch (error) { catch (error) {
core.setFailed(error.message); core.setFailed(error.message);
console.log('sanity check');
} }
}); });
} }

View File

@ -62,6 +62,7 @@ async function run(): Promise<void> {
} }
} catch (error) { } catch (error) {
core.setFailed((error as Error).message) core.setFailed((error as Error).message)
console.log('sanity check')
} }
} }