From 5da706ead11ecd69673d61c6c77cfeb3248b3166 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sat, 23 May 2026 15:34:42 -0700 Subject: [PATCH] =?UTF-8?q?ci:=20correct=20on-disk=20path=20in=20CI=20work?= =?UTF-8?q?flows=20(/opt/bytelyst=20=E2=86=92=20/Users/sd9235/code/mygh)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'Build, Test & Typecheck' job was failing immediately at its first 'Pull latest' step with: /opt/bytelyst/learning_ai_common_plat: No such file or directory exit status 1 The act_runner on this host has the monorepo at /Users/sd9235/code/mygh/learning_ai_common_plat (same pattern as the consumer repos that switched to the on-disk workflow earlier today). The legacy /opt/bytelyst/* path predates the migration and never existed on this host. Replaced all 10 occurrences across both CI workflow files (.gitea/workflows/ci.yml and publish.yml) with sed. No script content changed, only the cd target. --- .gitea/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fdaa3408..f3276387 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -24,34 +24,34 @@ jobs: steps: - name: Pull latest run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat git fetch origin main git checkout main git reset --hard origin/main - name: Install dependencies run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm install --frozen-lockfile - name: Build all packages run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm build - name: Lint run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm lint - name: Typecheck run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm typecheck - name: Test run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm test publish-packages: @@ -62,22 +62,22 @@ jobs: steps: - name: Pull latest run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat git fetch origin main git checkout main git reset --hard origin/main - name: Install dependencies run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm install --frozen-lockfile - name: Build all packages run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat pnpm build - name: Publish outdated packages to Gitea registry run: | - cd /opt/bytelyst/learning_ai_common_plat + cd /Users/sd9235/code/mygh/learning_ai_common_plat bash ./scripts/gitea/publish-outdated-packages.sh --skip-build