Browse Source

build: prefix version in uploader script (#36173)

build: prefix v in uploader script

Co-authored-by: Keeley Hammond <[email protected]>

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Keeley Hammond <[email protected]>
trop[bot] 2 years ago
parent
commit
0fe2a73f83
1 changed files with 1 additions and 1 deletions
  1. 1 1
      script/release/uploaders/upload.py

+ 1 - 1
script/release/uploaders/upload.py

@@ -23,7 +23,7 @@ from lib.util import get_electron_branding, execute, get_electron_version, \
                      SRC_DIR, ELECTRON_DIR, TS_NODE
 
 
-ELECTRON_VERSION = get_electron_version()
+ELECTRON_VERSION = 'v' + get_electron_version()
 
 PROJECT_NAME = get_electron_branding()['project_name']
 PRODUCT_NAME = get_electron_branding()['product_name']