@cryptotaxi247 / kubo / commits / 3106e5f91

chore: dont docker tag rc as latest

- add guard for rc releases; publish them to docker hub with the matching git tag - make the semver regex stricter and only publish as latest when a full semver tag with no pre-release suffix is the name of the git tag. - add `release` tag as an alias of `latest` as per https://github.com/ipfs/go-ipfs/issues/3999#issuecomment-742228981 Tested manually as the push-docker-tag.sh script is set up for it: ```shell ./push-docker-tags.sh $(date -u +%F) testingsha release v0.9.0-test dry Nothing to do. No docker tag defined for branch: release, tag: v0.9.0-test ./push-docker-tags.sh $(date -u +%F) testingsha release v0.9.0-rc1 dry DRY RUN! I would have tagged and pushed the following... docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:v0.9.0-rc1 docker push ipfs/go-ipfs:v0.9.0-rc1 ./push-docker-tags.sh $(date -u +%F) testingsha release v0.9.0 dry DRY RUN! I would have tagged and pushed the following... docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:v0.9.0 docker push ipfs/go-ipfs:v0.9.0 DRY RUN! I would have tagged and pushed the following... docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:latest docker push ipfs/go-ipfs:latest DRY RUN! I would have tagged and pushed the following... docker tag ipfs/go-ipfs:wip ipfs/go-ipfs:release docker push ipfs/go-ipfs:release ``` fixes #3999 License: MIT Signed-off-by: Oli Evans <oli@tableflip.io>

Oli Evans committed Apr 6, 2021 at 16:39 UTC 3106e5f91104ff60387e9f8d12d3476e6215a371
1 file changed +6 -2
bin/push-docker-tags.sh
+6 -2
@@ -6,7 +6,7 @@
6 # A bit like dockerhub autobuild config, but somewhere we can version control it.
7 #
8 # The `docker-build` job in .circleci/config.yml builds the current commit
9 -# in docker and tags it as ipfs/go-ipfs:wip
9 +# in docker and tags it as ipfs/go-ipfs:wip
10 #
11 # Then the `docker-publish` job runs this script to decide what tag, if any,
12 # to publish to dockerhub.
@@ -59,9 +59,13 @@ pushTag () {
59 fi
60 }
61
62 -if [[ $GIT_TAG =~ ^v[0-9]+ ]]; then
62 +if [[ $GIT_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+-rc ]]; then
63 + pushTag "$GIT_TAG"
64 +
65 +elif [[ $GIT_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
66 pushTag "$GIT_TAG"
67 pushTag "latest"
68 + pushTag "release" # see: https://github.com/ipfs/go-ipfs/issues/3999#issuecomment-742228981
69
70 elif [ "$GIT_BRANCH" = "feat/stabilize-dht" ]; then
71 pushTag "bifrost-${BUILD_NUM}-${GIT_SHA1_SHORT}"