From cb50a8fb06a2d0079aa317ba417ec67aa4715144 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sun, 9 Jan 2022 14:34:05 +0100 Subject: [PATCH] Convert YYYY-MM-DD to YYYY.MM.DD for proper version handling --- .github/workflows/updater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index f13a3e3..80d4473 100644 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -16,7 +16,7 @@ current_version=$(cat manifest.json | jq -j '.version|split("~")[0]') current_yunorunner_release=$(grep -Po 'yunorunner_release="\K.*?(?=")' scripts/_common.sh) repo=$(cat manifest.json | jq -j '.upstream.code|split("https://github.com/")[1]') # Some jq magic is needed, because the latest upstream release is not always the latest version (e.g. security patches for older versions) -version=$(curl --silent "https://api.github.com/repos/$repo/commits/master" | jq -r '.commit.committer.date | split("T")[0]') +version=$(curl --silent "https://api.github.com/repos/$repo/commits/master" | jq -r '.commit.committer.date | split("T")[0] | gsub("-";".")') yunorunner_release=$(curl --silent "https://api.github.com/repos/$repo/commits/master" | jq -r '.sha') # Setting up the environment variables