mlgym-deploy 3.3.25 → 3.3.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1904,7 +1904,7 @@ async function initProject(args) {
1904
1904
  deploymentStatus = {
1905
1905
  status: 'pending',
1906
1906
  message: 'Deployment is still in progress. Check status later.',
1907
- expected_url: `https://${hostname}.ezb.net`
1907
+ expected_url: project.deployment_url || null
1908
1908
  };
1909
1909
  }
1910
1910
  }
@@ -1923,7 +1923,7 @@ async function initProject(args) {
1923
1923
  description: project.description,
1924
1924
  git_url: gitUrl,
1925
1925
  deployment_enabled: enable_deployment,
1926
- deployment_url: hostname ? `https://${hostname}.ezb.net` : null
1926
+ deployment_url: project.deployment_url || null
1927
1927
  },
1928
1928
  git_operations: gitSteps,
1929
1929
  deployment: deploymentStatus,
@@ -1934,7 +1934,7 @@ async function initProject(args) {
1934
1934
  'Future updates: git push mlgym main'
1935
1935
  ] : [
1936
1936
  enable_deployment ? 'Deployment triggered - check URL in a few minutes' : 'Project ready',
1937
- enable_deployment ? `Expected URL: https://${hostname}.ezb.net` : null,
1937
+ enable_deployment && project.deployment_url ? `Expected URL: ${project.deployment_url}` : null,
1938
1938
  'To update: git push mlgym main'
1939
1939
  ].filter(Boolean))
1940
1940
  : [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mlgym-deploy",
3
- "version": "3.3.25",
3
+ "version": "3.3.26",
4
4
  "description": "MCP server for MLGym - Complete deployment management: deploy, configure, monitor, and rollback applications",
5
5
  "main": "index.js",
6
6
  "type": "module",