From 0b656192a9c3d5557c3ed427205f98f7e90d09c8 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Thu, 14 Nov 2024 18:06:42 +0100 Subject: [PATCH] Switch to action artifacts that was moved to .org --- lib/functions/general/apt-utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions/general/apt-utils.sh b/lib/functions/general/apt-utils.sh index be397f57b1..c0e1bc715a 100644 --- a/lib/functions/general/apt-utils.sh +++ b/lib/functions/general/apt-utils.sh @@ -43,10 +43,10 @@ function apt_find_upstream_package_version_and_download_url() { # get json with latest pacakge info generated by GHA case "${GITHUB_MIRROR}" in "ghproxy") - package_info_download_url="https://ghp.ci/https://raw.githubusercontent.com/amazingfate/deb-files-parser/refs/heads/master/${sought_package_name}.json" + package_info_download_url="https://ghp.ci/https://raw.githubusercontent.com/armbian/armbian.github.io/refs/heads/data/data/${sought_package_name}.json" ;; *) - package_info_download_url="https://raw.githubusercontent.com/amazingfate/deb-files-parser/refs/heads/master/${sought_package_name}.json" + package_info_download_url="https://github.armbian.com/${sought_package_name}.json" ;; esac package_info_download_url_file="$(mktemp)"