|
|
|
@ -24,11 +24,13 @@ |
|
|
|
|
|
|
|
async function deployApp() { |
|
|
|
try { |
|
|
|
notifications.info(`Deployment started. Please wait.`) |
|
|
|
const response = await api.post("/api/deploy") |
|
|
|
const json = await response.json() |
|
|
|
if (response.status !== 200) { |
|
|
|
console.log(json) |
|
|
|
throw new Error() |
|
|
|
} else { |
|
|
|
notifications.success(`Application published successfully`) |
|
|
|
} |
|
|
|
|
|
|
|
if (analytics.requestFeedbackOnDeploy()) { |
|
|
|
@ -36,7 +38,7 @@ |
|
|
|
} |
|
|
|
} catch (err) { |
|
|
|
analytics.captureException(err) |
|
|
|
notifications.error("Deployment unsuccessful. Please try again later.") |
|
|
|
notifications.error(`Error publishing app: ${err}`) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|