Skip to content

Commit

Permalink
Try to fix tests on tag deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Dec 13, 2020
1 parent ee742db commit 1e57056
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bincrafters/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.29.3'
__version__ = '0.29.4'
4 changes: 2 additions & 2 deletions bincrafters/build_shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ def get_ci_vars():
repobranch = get_repo_branch_from_ci()
repobranch_split = repobranch.split("/")

username, _ = reponame_split if len(reponame_split) > 1 else ["", ""]
channel, version = repobranch_split if len(repobranch_split) > 1 else ["", ""]
username, _ = reponame_split if len(reponame_split) == 2 else ["", ""]
channel, version = repobranch_split if len(repobranch_split) == 2 else ["", ""]
return username, channel, version


Expand Down

0 comments on commit 1e57056

Please sign in to comment.