Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Add v prefix to tag names from cibuilds
Browse files Browse the repository at this point in the history
Test Plan: Just make sure a new release has the v prefix on the tag on
the github releases page.

Auditors: @aekeus
  • Loading branch information
bbondy committed Oct 3, 2016
1 parent 9117f09 commit e1274a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def main():
github = GitHub(auth_token())
releases = github.repos(BROWSER_LAPTOP_REPO).releases.get()
tag = (json.load(open('package.json'))['version'] +
tag = ('v' + json.load(open('package.json'))['version'] +
release_channel() + '-' + build_label())
tag_exists = False
for release in releases:
Expand Down

1 comment on commit e1274a3

@aekeus
Copy link
Member

@aekeus aekeus commented on e1274a3 Oct 3, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.