Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Commit

Permalink
Release 21.08.1
Browse files Browse the repository at this point in the history
  • Loading branch information
accetto committed Aug 21, 2021
1 parent 3af9f47 commit 367a2b3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,4 @@ Credit goes to all the countless people and companies who contribute to open sou

<!-- latest tag badges -->

[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
17 changes: 14 additions & 3 deletions builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand All @@ -86,6 +92,11 @@ main() {

docker logout

echo
echo "Refreshing README..."

./utils/util-refresh-readme.sh

else

echo "Unable to connect to Docker hub!"
Expand Down
2 changes: 1 addition & 1 deletion hooks/env
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down

0 comments on commit 367a2b3

Please sign in to comment.