Skip to content

Commit

Permalink
Don't fail the run if openai-to-sqlite fails
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw authored Oct 9, 2024
1 parent 6528753 commit ef2b4c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# Table exists already, so only calculate new similarities
openai-to-sqlite similar tils.db \
$(git diff --name-only HEAD~10 HEAD | grep '/.*\.md$' | sed 's/\//_/g') \
--save --recalculate-for-matches --print
--save --recalculate-for-matches --print || true
else
# Table does not exist, calculate for everything
openai-to-sqlite similar tils.db --all --save
Expand Down

0 comments on commit ef2b4c8

Please sign in to comment.