Regenerate dist

This commit is contained in:
Luc Perkins 2024-05-20 11:57:41 -03:00
parent a181f8e6e8
commit 6551db427e
No known key found for this signature in database
GPG Key ID: 16DB1108FB591835
2 changed files with 3 additions and 9 deletions

10
dist/index.js generated vendored
View File

@ -94998,12 +94998,9 @@ var MagicNixCacheAction = class {
const res = await this.client.post(
`http://${this.hostAndPort}/api/workflow-start`
);
core.debug(
`post to /api/workflow-start (status: ${res.statusCode}, body: ${res.body})`
);
if (res.statusCode !== 200) {
this.failInStrictMode(
`Failed to trigger workflow start hook; expected status 200 but got ${res.statusCode}`
`Failed to trigger workflow start hook; expected status 200 but got (status: ${res.statusCode}, body: ${res.body})`
);
}
core.debug(`back from post: ${res.body}`);
@ -95033,12 +95030,9 @@ var MagicNixCacheAction = class {
const res = await this.client.post(
`http://${this.hostAndPort}/api/workflow-finish`
);
core.debug(
`post to /api/workflow-finish (status: ${res.statusCode}, body: ${res.body})`
);
if (res.statusCode !== 200) {
this.failInStrictMode(
`Failed to trigger workflow finish hook; expected status 200 but got ${res.statusCode}`
`Failed to trigger workflow finish hook; expected status 200 but got (status: ${res.statusCode}, body: ${res.body})`
);
}
} finally {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long