Skip to content

Commit 4621839

Browse files
Fix Variable format
1 parent 7a6f82e commit 4621839

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/compute-release-tag.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525

2626
BUILD_TYPE="AB"
2727

28-
Latest_release_tag = "V-%s-%s%s%s" % (udroid_version,BUILD_TYPE,RELEASE_TYPE,IterationNumber)
28+
Latest_release_tag = "VERSIONTAG=V-%s-%s%s%s" % (udroid_version,BUILD_TYPE,RELEASE_TYPE,IterationNumber)
2929

3030
with open(GITHUB_ENV_PATH, "a+") as f:
3131
f.write(Latest_release_tag)
3232

33-
print(Latest_release_tag)
33+
print(Latest_release_tag)

0 commit comments

Comments
 (0)