Skip to content

Commit 1161122

Browse files
committed
actions: Fix building for develop branch
1 parent e828c39 commit 1161122

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

version.SConscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if str(repo.head.ref)[:8] == "feature/":
3030
v = dev_tag + "-" + dev_feature + ".%s" % commits_from_develop
3131

3232

33-
if repo.head.ref == repo.heads.master:
33+
if str(repo.head.ref) == "master":
3434
v = str(next((tag for tag in repo.tags if tag.commit == repo.head.commit), "0.0.0"))
3535

3636

0 commit comments

Comments
 (0)