Browse Source

change release names

supermerill 3 years ago
parent
commit
ca45b58059
1 changed files with 3 additions and 3 deletions
  1. 3 3
      create_release.py

+ 3 - 3
create_release.py

@@ -80,7 +80,7 @@ with urlopen("https://api.github.com/repos/"+repo+"/actions/artifacts") as f:
 			found_linux_appimage_gtk2 = True;
 			print("ask for: "+entry["archive_download_url"]);
 			resp = requests.get(entry["archive_download_url"], headers={'Authorization': 'token ' + github_auth_token,}, allow_redirects=True);
-			print("appimage: " +str(resp));
+			print("gtk2 appimage: " +str(resp));
 			z = zipfile.ZipFile(io.BytesIO(resp.content));
 			z.extractall(release_path);
 			os.rename(release_path+"/"+program_name+"_ubu64.AppImage", release_path+"/"+program_name+"-ubuntu_18.04-gtk2-" + version + ".AppImage");
@@ -88,7 +88,7 @@ with urlopen("https://api.github.com/repos/"+repo+"/actions/artifacts") as f:
 			found_linux_appimage_gtk3 = True;
 			print("ask for: "+entry["archive_download_url"]);
 			resp = requests.get(entry["archive_download_url"], headers={'Authorization': 'token ' + github_auth_token,}, allow_redirects=True);
-			print("appimage: " +str(resp));
+			print("gtk3 appimage: " +str(resp));
 			z = zipfile.ZipFile(io.BytesIO(resp.content));
 			z.extractall(release_path);
 			os.rename(release_path+"/"+program_name+"_ubu64.AppImage", release_path+"/"+program_name+"-ubuntu_18.04-" + version + ".AppImage");
@@ -96,7 +96,7 @@ with urlopen("https://api.github.com/repos/"+repo+"/actions/artifacts") as f:
 			found_linux = True;
 			print("ask for: "+entry["archive_download_url"]);
 			resp = requests.get(entry["archive_download_url"], headers={'Authorization': 'token ' + github_auth_token,}, allow_redirects=True);
-			print("appimage: " +str(resp));
+			print("gtk3 archive: " +str(resp));
 			z = zipfile.ZipFile(io.BytesIO(resp.content));
 			z.extractall(release_path);
 			base_path = release_path+"/"+program_name+"_" + version + "_linux64_" + date_str;