We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c62f3b commit 40a3c7eCopy full SHA for 40a3c7e
1 file changed
.github/workflows/sync-ai-models.yml
@@ -31,15 +31,17 @@ jobs:
31
if: steps.node-modules-cache.outputs.cache-hit != 'true'
32
run: npm ci --no-audit --no-fund
33
34
- - name: Build shared package
35
- run: npx nx run shared:build
+ - name: Build packages
+ run: |
36
+ npx nx run shared:build
37
+ npx nx run openops:build
38
39
- name: Check for model updates
40
id: check-models
41
continue-on-error: true
42
run: |
43
set +e
- npx tsx packages/openops/src/lib/ai/sync-models.ts --update
44
+ node packages/openops/dist/lib/ai/sync-models.js --update
45
EXIT_CODE=$?
46
set -e
47
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
0 commit comments