v4.4.4. Sigh.

This commit is contained in:
Neale Pickett 2021-10-20 14:27:32 -06:00
parent e1e9157841
commit e15a505d7b
3 changed files with 8 additions and 4 deletions

View File

@ -19,7 +19,7 @@ push:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
script: script:
- mkdir ~/.docker - mkdir ~/.docker
- echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json - echo "$DOCKER_AUTH_CONFIG" | tee ~/.docker/config.json | md5sum
- sh build/ci/ci.sh publish - sh build/ci/ci.sh publish
- > - >
docker build docker build

View File

@ -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/), 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). 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 ## [v4.3.3] - 2021-10-20
### Fixed ### Fixed
- Points awarded while scoring is paused are now correctly sorted (#168) - Points awarded while scoring is paused are now correctly sorted (#168)

View File

@ -27,9 +27,9 @@ run () {
tags () { tags () {
pfx=$1 pfx=$1
for base in $images; do for base in $images; do
echo $pfx $base:${CI_COMMIT_REF_SLUG} echo $pfx $base:${CI_COMMIT_REF_NAME}
echo $pfx $base:${CI_COMMIT_REF_SLUG%.*} echo $pfx $base:${CI_COMMIT_REF_NAME%.*}
echo $pfx $base:${CI_COMMIT_REF_SLUG%.*.*} echo $pfx $base:${CI_COMMIT_REF_NAME%.*.*}
done | uniq done | uniq
} }