Regenerate dist

This commit is contained in:
Luc Perkins 2024-05-20 13:58:36 -03:00
parent fe4aeab234
commit d53320e748
No known key found for this signature in database
GPG Key ID: 16DB1108FB591835
2 changed files with 7 additions and 1 deletions

6
dist/index.js generated vendored
View File

@ -94998,6 +94998,9 @@ var MagicNixCacheAction = class {
const res = await this.client.post(
`http://${this.hostAndPort}/api/workflow-start`
);
core.debug(
`Response from 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 (status: ${res.statusCode}, body: ${res.body})`
@ -95030,6 +95033,9 @@ var MagicNixCacheAction = class {
const res = await this.client.post(
`http://${this.hostAndPort}/api/workflow-finish`
);
core.debug(
`Response from 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 (status: ${res.statusCode}, body: ${res.body})`

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long