Skip to content

Commit

Permalink
0.6.0: Fixing deployment readiness check and nginx queries provenance
Browse files Browse the repository at this point in the history
  • Loading branch information
flavienbwk committed Sep 8, 2024
1 parent e79294f commit 6da3373
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions action/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,15 @@ try {
}

// Feed RepoChat with repo data

// Set outputs
core.setOutput('domain', containerEndpoint);
} catch (error) {
console.error('Error deploying container:', error);
}

}

core.setOutput('domain', containerEndpoint);

} catch (error) {
core.setFailed(error.message);
}
5 changes: 3 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70316,14 +70316,15 @@ try {
}

// Feed RepoChat with repo data

// Set outputs
_actions_core__WEBPACK_IMPORTED_MODULE_0__.setOutput('domain', containerEndpoint);
} catch (error) {
console.error('Error deploying container:', error);
}

}

_actions_core__WEBPACK_IMPORTED_MODULE_0__.setOutput('domain', containerEndpoint);

} catch (error) {
_actions_core__WEBPACK_IMPORTED_MODULE_0__.setFailed(error.message);
}
Expand Down

0 comments on commit 6da3373

Please sign in to comment.