Fix comma

This commit is contained in:
Romain Thomas 2021-01-08 07:31:40 +01:00
parent caac866496
commit e56fae238d

2
.github/deploy.py vendored
View File

@ -132,7 +132,7 @@ BRANCH_NAME = get_branch(CURRENT_CI)
TAG_NAME = get_tag(CURRENT_CI)
IS_TAGGED = len(TAG_NAME) > 0
logger.info("Branch: %s", BRANCH_NAME)
logger.info("Tag: %s" TAG_NAME)
logger.info("Tag: %s", TAG_NAME)
if BRANCH_NAME not in ALLOWED_BRANCHES:
logger.info("Skip deployment for branch '%s'", BRANCH_NAME)
sys.exit(0)