Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/pr-checks-sdk-pod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,13 @@ jobs:
fi

- name: Install dependencies
run: ${{ matrix.pkg_manager }} install
shell: bash
run: |
if [ "${{ matrix.package }}" = "sdk" ]; then
bun install --frozen-lockfile
else
${{ matrix.pkg_manager }} install
fi

- name: Install Bare runtime
if: matrix.package == 'rag'
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/publish-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,6 @@ jobs:
run: |
echo "Configuring scoped registry for @tetherto and @qvac packages..."
set -eu

# Remove stale lock file to force fresh registry resolution
rm -f bun.lock

echo "Writing .npmrc for dual registry install…"
cat > .npmrc <<NPMRC
registry=https://registry.npmjs.org/
Expand Down Expand Up @@ -151,7 +147,7 @@ jobs:
EOF

- name: Install dependencies
run: bun install
run: bun install --frozen-lockfile
working-directory: ${{ env.WORKDIR }}

- name: Modify package name for branch-based builds
Expand Down
Loading