From e7814caa97a8927463aafd07156b96cfb452c8c5 Mon Sep 17 00:00:00 2001 From: autocommit Date: Wed, 10 Jun 2026 21:07:42 -0700 Subject: [PATCH] =?UTF-8?q?breaking(devops):=20=F0=9F=92=A5=20Update=20Dev?= =?UTF-8?q?Ops=20CLI=20and=20workflow=20templates=20to=20enforce=20new=20i?= =?UTF-8?q?nternal=20network=20URLs=20for=20publishing,=20breaking=20backw?= =?UTF-8?q?ard=20compatibility=20in=20CI/CD=20pipelines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/commands/devops.ts | 12 ++++++------ templates/workflows/publish-config.yml | 2 +- templates/workflows/publish-npm.yml | 2 +- templates/workflows/publish-pypi.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/commands/devops.ts b/src/commands/devops.ts index e3097d4..aaa145a 100644 --- a/src/commands/devops.ts +++ b/src/commands/devops.ts @@ -11,11 +11,11 @@ interface ServiceCheck { } const ENDPOINTS = { - verdaccioPing: 'http://npm.black.local/-/ping', - verdaccioHealth: 'http://npm.black.local/-/verdaccio/data/packages', - forgejoHealth: 'http://forge.black.local/api/v1/version', - forgejoPackages: 'http://forge.black.local/api/packages/lilith/npm/@lilith%2Fyaml-config', - verdaccioTarball: 'http://npm.black.local/@lilith/yaml-config/-/yaml-config-1.0.9.tgz', + verdaccioPing: 'http://npm.black.lan/-/ping', + verdaccioHealth: 'http://npm.black.lan/-/verdaccio/data/packages', + forgejoHealth: 'http://forge.black.lan/api/v1/version', + forgejoPackages: 'http://forge.black.lan/api/packages/lilith/npm/@lilith%2Fyaml-config', + verdaccioTarball: 'http://npm.black.lan/@lilith/yaml-config/-/yaml-config-1.0.9.tgz', } async function checkVerdaccioPing(): Promise { @@ -188,7 +188,7 @@ function formatRow(check: ServiceCheck): string[] { export function createDevopsCommand(): Command { return new Command('devops') - .description('Check status of devops services (npm.black.local, forge.black.local)') + .description('Check status of devops services (npm.black.lan, forge.black.lan)') .option('-v, --verbose', 'Show detailed information') .action(async (options: { verbose?: boolean }) => { const spinner = ora('Checking devops services...').start() diff --git a/templates/workflows/publish-config.yml b/templates/workflows/publish-config.yml index 35bb3ea..f9d27a1 100644 --- a/templates/workflows/publish-config.yml +++ b/templates/workflows/publish-config.yml @@ -39,7 +39,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - registry-url: 'http://forge.black.local/api/packages/lilith/npm/' + registry-url: 'http://forge.black.lan/api/packages/lilith/npm/' - name: Publish run: npm publish --access public diff --git a/templates/workflows/publish-npm.yml b/templates/workflows/publish-npm.yml index 313f441..d4f7857 100644 --- a/templates/workflows/publish-npm.yml +++ b/templates/workflows/publish-npm.yml @@ -47,7 +47,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - registry-url: 'http://forge.black.local/api/packages/lilith/npm/' + registry-url: 'http://forge.black.lan/api/packages/lilith/npm/' - name: Setup pnpm uses: pnpm/action-setup@v2 diff --git a/templates/workflows/publish-pypi.yml b/templates/workflows/publish-pypi.yml index 763f1a0..b960a5e 100644 --- a/templates/workflows/publish-pypi.yml +++ b/templates/workflows/publish-pypi.yml @@ -32,7 +32,7 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} run: | python -m twine upload \ - --repository-url http://forge.black.local/api/packages/lilith/pypi \ + --repository-url http://forge.black.lan/api/packages/lilith/pypi \ --skip-existing \ --non-interactive \ dist/*