From e15a505d7be080ea9f8c871ee3457b339d8e993d Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Wed, 20 Oct 2021 14:27:32 -0600 Subject: [PATCH] v4.4.4. Sigh. --- .gitlab-ci.yml | 2 +- CHANGELOG.md | 4 ++++ build/ci/ci.sh | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b6d291d..a1e5b42 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ push: - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' script: - mkdir ~/.docker - - echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json + - echo "$DOCKER_AUTH_CONFIG" | tee ~/.docker/config.json | md5sum - sh build/ci/ci.sh publish - > docker build diff --git a/CHANGELOG.md b/CHANGELOG.md index fda815b..7913147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v4.4.4] - 2021-10-20 +### Changed +- Trying to get CI push of built images. I expect this to fail, too. But in a way that can help me debug the issue. + ## [v4.3.3] - 2021-10-20 ### Fixed - Points awarded while scoring is paused are now correctly sorted (#168) diff --git a/build/ci/ci.sh b/build/ci/ci.sh index 7bdb4e3..8e87f52 100755 --- a/build/ci/ci.sh +++ b/build/ci/ci.sh @@ -27,9 +27,9 @@ run () { tags () { pfx=$1 for base in $images; do - echo $pfx $base:${CI_COMMIT_REF_SLUG} - echo $pfx $base:${CI_COMMIT_REF_SLUG%.*} - echo $pfx $base:${CI_COMMIT_REF_SLUG%.*.*} + echo $pfx $base:${CI_COMMIT_REF_NAME} + echo $pfx $base:${CI_COMMIT_REF_NAME%.*} + echo $pfx $base:${CI_COMMIT_REF_NAME%.*.*} done | uniq }