Skip to content

Commit

Permalink
Fix logic around API doc deploy
Browse files Browse the repository at this point in the history
The or was accidentally replaced by an and, move back to or.
  • Loading branch information
aragilar committed Jul 11, 2024
1 parent 7051b9a commit 9162f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload_api_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

if [ "$GITHUB_REPOSITORY" = "bmcage/odes" ] && [ "$DOCTR_DEPLOY" ]; then
if [ "$GITHUB_REPOSITORY" = "bmcage/odes" ] || [ "$DOCTR_DEPLOY" ]; then
deploy="true"
else
deploy="false"
Expand Down

0 comments on commit 9162f43

Please sign in to comment.