Skip to content

Commit 18862db

Browse files
test again
1 parent 9154a21 commit 18862db

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ jobs:
3535
id: check-models
3636
continue-on-error: true
3737
run: |
38+
set +e
3839
npx tsx packages/openops/src/lib/ai/sync-models.ts --update > sync-output.txt 2>&1
39-
echo "exit_code=$?" >> $GITHUB_OUTPUT
40+
EXIT_CODE=$?
41+
set -e
42+
echo "exit_code=$EXIT_CODE" >> $GITHUB_OUTPUT
4043
cat sync-output.txt
44+
exit 0
4145
4246
- name: Upload sync output
4347
if: steps.check-models.outputs.exit_code == '1'

0 commit comments

Comments
 (0)