From d6c5ef2a0a4c1a097803fbf74bc71e6db9b998ee Mon Sep 17 00:00:00 2001 From: Toby Date: Fri, 1 Sep 2023 17:37:11 -0700 Subject: [PATCH] ci: publish to API support --- .github/workflows/master.yml | 2 +- .github/workflows/release.yml | 6 ++++ hyperbole.py | 55 +++++++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+), 1 deletion(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 9d68c10..76d4564 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -41,5 +41,5 @@ jobs: - name: Archive uses: actions/upload-artifact@v3 with: - name: hysteria-master + name: hysteria-master-${{ github.sha }} path: build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7108660..4121cf5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,3 +41,9 @@ jobs: uses: softprops/action-gh-release@v1 with: files: build/* + + - name: Publish to API + run: | + pip install requests + export HY_API_POST_KEY=${{ secrets.HY2_API_POST_KEY }} + python hyperbole.py publish diff --git a/hyperbole.py b/hyperbole.py index d53eb7f..5ab47d2 100755 --- a/hyperbole.py +++ b/hyperbole.py @@ -3,10 +3,12 @@ import argparse import os +import re import sys import subprocess import datetime import shutil +import requests # Hyperbole is the official build script for Hysteria. # Available environment variables for controlling the build: @@ -116,6 +118,22 @@ def get_app_version(): return app_version +def get_app_version_code(str=None): + if not str: + str = get_app_version() + + match = re.search(r"v(\d+)\.(\d+)\.(\d+)", str) + + if match: + major, minor, patch = match.groups() + major = major.zfill(2)[:2] + minor = minor.zfill(2)[:2] + patch = patch.zfill(2)[:2] + return int(f"{major}{minor}{patch[:2]}") + else: + return 0 + + def get_app_commit(): app_commit = os.environ.get("HY_APP_COMMIT") if not app_commit: @@ -329,6 +347,35 @@ def cmd_test(module=None): print("Failed to test %s" % dir) +def cmd_publish(urgent=False): + if not check_build_env(): + return + + app_version = get_app_version() + app_version_code = get_app_version_code(app_version) + if app_version_code == 0: + print("Invalid app version") + return + + payload = { + "code": app_version_code, + "ver": app_version, + "chan": "release", + "url": "https://github.com/apernet/hysteria/releases", + "urgent": urgent, + } + headers = { + "Content-Type": "application/json", + "Authorization": os.environ.get("HY_API_POST_KEY"), + } + resp = requests.post("https://api.hy2.io/v1/update", json=payload, headers=headers) + + if resp.status_code == 200: + print("Published %s" % app_version) + else: + print("Failed to publish %s, status code: %d" % (app_version, resp.status_code)) + + def cmd_clean(): shutil.rmtree(BUILD_DIR, ignore_errors=True) @@ -373,6 +420,12 @@ def main(): p_test = p_cmd.add_parser("test", help="Test the code") p_test.add_argument("module", nargs="?", help="Module to test") + # Publish + p_pub = p_cmd.add_parser("publish", help="Publish the current version") + p_pub.add_argument( + "-u", "--urgent", action="store_true", help="Publish as an urgent update" + ) + # Clean p_cmd.add_parser("clean", help="Clean the build directory") @@ -393,6 +446,8 @@ def main(): cmd_tidy() elif args.command == "test": cmd_test(args.module) + elif args.command == "publish": + cmd_publish(args.urgent) elif args.command == "clean": cmd_clean() elif args.command == "about":