Skip to content

Commit

Permalink
chore(docs): passing nothing if pull request is unbounded
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed Feb 27, 2024
1 parent e69b586 commit f4b5f51
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,11 @@ jobs:
build docs
echo "Deploying docs"
docs/deploy_netlify.sh $CIRCLE_BRANCH $CIRCLE_PULL_REQUEST
if [ -n "$CIRCLE_PULL_REQUEST" ]; then
docs/deploy_netlify.sh "$CIRCLE_BRANCH" "$CIRCLE_PULL_REQUEST"
else
docs/deploy_netlify.sh "$CIRCLE_BRANCH"
fi
yellow-paper:
machine:
Expand Down

0 comments on commit f4b5f51

Please sign in to comment.