From 367a2b3c6dffa32aba9d30731bc2b35e65585a96 Mon Sep 17 00:00:00 2001 From: accetto <34798830+accetto@users.noreply.github.com> Date: Sat, 21 Aug 2021 14:42:03 +0200 Subject: [PATCH] Release 21.08.1 --- CHANGELOG.md | 5 +++++ README.md | 2 +- builder.sh | 17 ++++++++++++++--- hooks/env | 2 +- 4 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31c250d..fc68027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ *** +### Release 21.08.1 + +- utility `builder.sh` improved +- Chromium Browser **92.0.4515.159** + ### Release 21.08 - Docker Hub has removed auto-builds from free plans since 2021-07-26, therefore diff --git a/README.md b/README.md index ba38192..1307010 100644 --- a/README.md +++ b/README.md @@ -307,4 +307,4 @@ Credit goes to all the countless people and companies who contribute to open sou -[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.5-chromium91.0.4472.101/blue +[badge-VERSION_STICKER_LATEST]: https://badgen.net/badge/version%20sticker/ubuntu18.04.5-chromium92.0.4515.159/blue diff --git a/builder.sh b/builder.sh index 06b7207..d029730 100644 --- a/builder.sh +++ b/builder.sh @@ -25,7 +25,8 @@ main() { local tag=${1?Need tag} local cmd=${2?Need command} - local result + local last_line + local test_result case "${cmd}" in @@ -68,9 +69,14 @@ main() { echo ### test version sticker - result=$( hooks/test "${tag}" 2>&1 | tail -n1 ) + test_result=$( hooks/test "${tag}" 2>&1 | tail -n5 ) - if [ "${result}" == '+ exit 0' ] ; then + echo "${test_result}" + echo + + last_line=$(echo "${test_result}" | tail -n1) + + if [ "${last_line}" == '+ exit 0' ] ; then docker_hub_connect @@ -86,6 +92,11 @@ main() { docker logout + echo + echo "Refreshing README..." + + ./utils/util-refresh-readme.sh + else echo "Unable to connect to Docker hub!" diff --git a/hooks/env b/hooks/env index ea593ad..28b480c 100644 --- a/hooks/env +++ b/hooks/env @@ -11,7 +11,7 @@ BASETAG="" TODAY=$(date +%Y-%m-%d) ### Warning! The values must be explicit strings (used by utils). -VERSION_STICKER_LATEST="ubuntu18.04.5-chromium91.0.4472.101" +VERSION_STICKER_LATEST="ubuntu18.04.5-chromium92.0.4515.159" VERSION_STICKER="${VERSION_STICKER_LATEST}"