mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 06:56:44 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
adf93d0937
commit
25612b8f29
1 changed files with 7 additions and 4 deletions
|
|
@ -130,14 +130,16 @@ export async function configureRailwayService(opts: {
|
||||||
|
|
||||||
export async function deployRailwayService(opts: {
|
export async function deployRailwayService(opts: {
|
||||||
token: string;
|
token: string;
|
||||||
serviceId: string;
|
|
||||||
environmentId: string;
|
environmentId: string;
|
||||||
/** Use true on the first deploy of a freshly-created service (no prior deployment exists). */
|
/** Use true on the first deploy of a freshly-created service (no prior deployment exists). */
|
||||||
firstDeploy?: boolean;
|
firstDeploy?: boolean;
|
||||||
|
/** Use true after changing the configured source image so Railway pulls the current source. */
|
||||||
|
fromSource?: boolean;
|
||||||
}): Promise<void> {
|
}): Promise<void> {
|
||||||
// serviceInstanceRedeploy só funciona se já existe um deployment.
|
// serviceInstanceRedeploy só funciona se já existe um deployment.
|
||||||
// Para o primeiro deploy de um serviço recém-criado, usamos serviceInstanceDeployV2.
|
// Para o primeiro deploy de um serviço recém-criado, ou após trocar source.image,
|
||||||
if (opts.firstDeploy) {
|
// usamos DeployV2 para puxar a fonte/imagem configurada em vez de reusar o último deploy.
|
||||||
|
if (opts.firstDeploy || opts.fromSource) {
|
||||||
const mutation = `
|
const mutation = `
|
||||||
mutation ServiceInstanceDeployV2($serviceId: String!, $environmentId: String!) {
|
mutation ServiceInstanceDeployV2($serviceId: String!, $environmentId: String!) {
|
||||||
serviceInstanceDeployV2(serviceId: $serviceId, environmentId: $environmentId)
|
serviceInstanceDeployV2(serviceId: $serviceId, environmentId: $environmentId)
|
||||||
|
|
@ -169,10 +171,11 @@ export async function deployRailwayService(opts: {
|
||||||
// Fallback: serviço novo sem deploy anterior — redeploy falha, tenta V2.
|
// Fallback: serviço novo sem deploy anterior — redeploy falha, tenta V2.
|
||||||
if (errStr.includes("no deployment") || errStr.includes("No deployments") || errStr.includes("not found")) {
|
if (errStr.includes("no deployment") || errStr.includes("No deployments") || errStr.includes("not found")) {
|
||||||
console.warn(`[deployRailwayService] redeploy sem deploy anterior, fallback para serviceInstanceDeployV2`);
|
console.warn(`[deployRailwayService] redeploy sem deploy anterior, fallback para serviceInstanceDeployV2`);
|
||||||
await deployRailwayService({ ...opts, firstDeploy: true });
|
await deployRailwayService({ ...opts, firstDeploy: true, fromSource: false });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
throw new Error(`serviceInstanceRedeploy failed: ${errStr}`);
|
throw new Error(`serviceInstanceRedeploy failed: ${errStr}`);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue