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