Change build version format back (#20)
This commit is contained in:
parent
2647f8540e
commit
fdd15bf801
3 changed files with 4 additions and 4 deletions
|
|
@ -1 +1 @@
|
||||||
v1.5.4
|
1.5.4
|
||||||
|
|
@ -7,7 +7,7 @@ VERSION=`cat VERSION`
|
||||||
# Clone new code
|
# Clone new code
|
||||||
git clone https://github.com/ProtonMail/proton-bridge.git
|
git clone https://github.com/ProtonMail/proton-bridge.git
|
||||||
cd proton-bridge
|
cd proton-bridge
|
||||||
git checkout $VERSION
|
git checkout v$VERSION
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make build-nogui
|
make build-nogui
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,6 @@ response = requests.get(
|
||||||
headers={"Accept": "application/vnd.github.v3+json"},
|
headers={"Accept": "application/vnd.github.v3+json"},
|
||||||
)
|
)
|
||||||
tags = json.loads(response.content)
|
tags = json.loads(response.content)
|
||||||
version_re = re.compile("v(\d+)\.(\d+)\.(\d+)")
|
version_re = re.compile("v\d+\.\d+\.\d+")
|
||||||
releases = [tag["name"] for tag in tags if version_re.match(tag["name"])]
|
releases = [tag["name"][1:] for tag in tags if version_re.match(tag["name"])]
|
||||||
check_version("build", releases[0])
|
check_version("build", releases[0])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue