ci: correct on-disk path in CI workflows (/opt/bytelyst → /Users/sd9235/code/mygh)
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.
This commit is contained in:
parent
7904171418
commit
5da706ead1
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user