We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9154a21 commit 18862dbCopy full SHA for 18862db
1 file changed
.github/workflows/sync-ai-models.yml
@@ -35,9 +35,13 @@ jobs:
35
id: check-models
36
continue-on-error: true
37
run: |
38
+ set +e
39
npx tsx packages/openops/src/lib/ai/sync-models.ts --update > sync-output.txt 2>&1
- echo "exit_code=$?" >> $GITHUB_OUTPUT
40
+ EXIT_CODE=$?
41
+ set -e
42
+ echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
43
cat sync-output.txt
44
+ exit 0
45
46
- name: Upload sync output
47
if: steps.check-models.outputs.exit_code == '1'
0 commit comments