From 86a39deb035d14d28c41bca83511ac61ac10fbd0 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Sat, 22 Jul 2023 16:47:56 +0200 Subject: [PATCH] fix the auto updater script (it now places itself on the 'testing' branch) --- .github/workflows/updater.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index 218e48e..fe7b121 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -16,6 +16,9 @@ # FETCHING LATEST RELEASE AND ITS ASSETS #================================================= +# Access the branch 'testing' +git checkout testing + # Fetching information current_version=$(jq -j '.version|split("~")[0]' manifest.json) repo=$(jq -j '.upstream.code|split("https://github.com/")[1]' manifest.json)