diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be7e9d9f..21c007ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,9 @@ jobs: - run: bun install --frozen-lockfile - run: bun run build - run: bun run build:registry + - run: bun run games:clone + env: + GAMES_CLONE_TOKEN: ${{ secrets.GAMES_CLONE_TOKEN }} - run: bun run check-types - run: bun test packages apps/dev scripts diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61cb349c..9e94cdb4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -43,6 +43,9 @@ jobs: run: bun run stage-skills - run: bun run check-artifacts - run: bun run build + - run: bun run games:clone + env: + GAMES_CLONE_TOKEN: ${{ secrets.GAMES_CLONE_TOKEN }} - run: bun run check-types - run: bun test packages Games - name: Publish unpublished packages in dependency order diff --git a/CHANGELOG.md b/CHANGELOG.md index 141b71eb..a3e5209c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,11 @@ between (`--json` for structured output). ## [Unreleased] +### Fixed + +- Correct foot-IK endpoint recomputation after hip rotation; verify reachable targets and clamping without changing bone lengths. +- Restore release CI prerequisites and make catalog-loader tests independent of the external Games checkout. +