Skip to content

Commit

Permalink
release: fix filtering criteria for builds (#922)
Browse files Browse the repository at this point in the history
Skip release pipeline if build is for a PR
  • Loading branch information
ivotron committed Sep 17, 2020
1 parent 3b0c40a commit 9471c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .popper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ steps:
fi
# it's a build for a PR
if [[ $TRAVIS_PULL_REQUEST == true ]]; then
if [[ $TRAVIS_PULL_REQUEST != "false" ]]; then
exit 78
fi
Expand Down

0 comments on commit 9471c3c

Please sign in to comment.