ciignore: always pass checks for tags

This commit is contained in:
Shahidh 2018-07-21 01:38:16 +05:30
parent 80db149cbd
commit 0b15987db9
No known key found for this signature in database
GPG Key ID: 9903E455C1B45ECD

View File

@ -10,6 +10,12 @@
set -eo pipefail
ROOT="$(readlink -f ${BASH_SOURCE[0]%/*}/../)"
# always build tagged builds
if [[ ! -z "$CIRCLE_TAG" ]]; then
echo "Skipping check for tags"
exit
fi
# always build default branch
if [[ "$CIRCLE_BRANCH" == "master" ]]; then
echo "Skipping check for master branch"