Merge pull request #8734 from element-hq/feature/bma/fixRelease

Fix release script which download artifact
This commit is contained in:
Benoit Marty 2024-01-17 17:55:40 +01:00 committed by GitHub
commit d418525748
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 15 deletions

View File

@ -1,2 +1,2 @@
Main changes in this version: add Mobile Device Managament and functional members support. Main changes in this version: add Mobile Device Management and functional members support.
Full changelog: https://github.com/element-hq/element-android/releases Full changelog: https://github.com/element-hq/element-android/releases

View File

@ -16,11 +16,12 @@
# #
import argparse import argparse
import hashlib
import json import json
import os import os
# Run `pip3 install requests` if not installed yet # Run `pip3 install requests` if not installed yet
import requests import requests
# Run `pip3 install re` if not installed yet
import re
# This script downloads artifacts from GitHub. # This script downloads artifacts from GitHub.
# Ref: https://docs.github.com/en/rest/actions/artifacts#get-an-artifact # Ref: https://docs.github.com/en/rest/actions/artifacts#get-an-artifact
@ -65,22 +66,20 @@ if args.verbose:
print(args) print(args)
# Split the artifact URL to get information # Split the artifact URL to get information
# Ex: https://github.com/element-hq/element-android/suites/9293388174/artifacts/435942121 # Ex: https://github.com/element-hq/element-android/actions/runs/7460386865/artifacts/1156548729
artifactUrl = args.artifactUrl artifactUrl = args.artifactUrl
if not artifactUrl.startswith('https://github.com/'):
print("❌ Invalid parameter --artifactUrl %s. Must start with 'https://github.com/'" % artifactUrl) url_regex = r"https://github.com/(.+?)/(.+?)/actions/runs/.+?/artifacts/(.+)"
exit(1) result = re.search(url_regex, artifactUrl)
if "/artifacts/" not in artifactUrl:
print("❌ Invalid parameter --artifactUrl %s. Must contain '/artifacts/'" % artifactUrl) if result is None:
exit(1) print(
artifactItems = artifactUrl.split("/") "❌ Invalid parameter --artifactUrl '%s'. Please check the format.\nIt should be something like: %s" %
if len(artifactItems) != 9: (artifactUrl, 'https://github.com/element-hq/element-android/actions/runs/7460386865/artifacts/1156548729')
print("❌ Invalid parameter --artifactUrl %s. Please check the format." % (artifactUrl)) )
exit(1) exit(1)
gitHubRepoOwner = artifactItems[3] (gitHubRepoOwner, gitHubRepo, artifactId) = result.groups()
gitHubRepo = artifactItems[4]
artifactId = artifactItems[8]
if args.verbose: if args.verbose:
print("gitHubRepoOwner: %s, gitHubRepo: %s, artifactId: %s" % (gitHubRepoOwner, gitHubRepo, artifactId)) print("gitHubRepoOwner: %s, gitHubRepo: %s, artifactId: %s" % (gitHubRepoOwner, gitHubRepo, artifactId))