Move info statement

This commit is contained in:
Luc Perkins 2024-05-20 08:33:19 -03:00
parent 643c369303
commit c930804757
No known key found for this signature in database
GPG key ID: 16DB1108FB591835

View file

@ -311,9 +311,8 @@ class MagicNixCacheAction {
.post(`http://${hostAndPort}/api/workflow-finish`) .post(`http://${hostAndPort}/api/workflow-finish`)
.json(); .json();
actionsCore.info(JSON.stringify(res));
if (res.status !== 200) { if (res.status !== 200) {
actionsCore.info(JSON.stringify(res));
this.failInStrictMode( this.failInStrictMode(
`Failed to trigger workflow finish hook; expected HTTP status 200 from POST to /api/workflow-finish but got ${res.status} instead`, `Failed to trigger workflow finish hook; expected HTTP status 200 from POST to /api/workflow-finish but got ${res.status} instead`,
); );