Skip to content

Commit 40a3c7e

Browse files
Hilfe
1 parent 1c62f3b commit 40a3c7e

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/sync-ai-models.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ jobs:
3131
if: steps.node-modules-cache.outputs.cache-hit != 'true'
3232
run: npm ci --no-audit --no-fund
3333

34-
- name: Build shared package
35-
run: npx nx run shared:build
34+
- name: Build packages
35+
run: |
36+
npx nx run shared:build
37+
npx nx run openops:build
3638
3739
- name: Check for model updates
3840
id: check-models
3941
continue-on-error: true
4042
run: |
4143
set +e
42-
npx tsx packages/openops/src/lib/ai/sync-models.ts --update
44+
node packages/openops/dist/lib/ai/sync-models.js --update
4345
EXIT_CODE=$?
4446
set -e
4547
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)