From d7f0ff07dcdf56cd6c90c09751718f7d9851e516 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Thu, 7 Sep 2023 18:00:22 +0200 Subject: [PATCH] fix: update insider version [skip ci] --- insider.json | 5 ++++- update_insider.sh | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/insider.json b/insider.json index 8b13789..ac7fadf 100644 --- a/insider.json +++ b/insider.json @@ -1 +1,4 @@ - +{ + "tag": "1.82.0", + "commit": "f1302be1e67e3af5fbeb8bbb2ea784de7bc96150" +} diff --git a/update_insider.sh b/update_insider.sh index 1396fbb..6dcd17a 100755 --- a/update_insider.sh +++ b/update_insider.sh @@ -12,7 +12,7 @@ if [[ -z "${GITHUB_TOKEN}" ]]; then exit 0 fi -jsonTmp=$( jq --arg 'tag' "${MS_TAG/\-insider/}" --arg 'commit' "${MS_COMMIT}" '. "insider.json" | .tag=$tag | .commit=$commit' ) +jsonTmp=$( cat "insider.json" | jq --arg 'tag' "${MS_TAG/\-insider/}" --arg 'commit' "${MS_COMMIT}" '. | .tag=$tag | .commit=$commit' ) echo "${jsonTmp}" > "insider.json" && unset jsonTmp git config user.email "$( echo "${GITHUB_USERNAME}" | awk '{print tolower($0)}' )-ci@not-real.com"