1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-30 19:24:42 +02:00

Tag latest releases as latest and alpine

Dieser Commit ist enthalten in:
Jeremy Lin 2020-07-15 20:02:18 -07:00
Ursprung 73f0841f17
Commit 4c78c5a9c9

Datei anzeigen

@ -29,13 +29,13 @@ done
manifest_lists=("${DOCKER_REPO}:${DOCKER_TAG}") manifest_lists=("${DOCKER_REPO}:${DOCKER_TAG}")
# If the Docker tag starts with a version number, assume the latest release is # If the Docker tag starts with a version number, assume the latest release is
# being pushed. Add an extra manifest (`latest-release` or `alpine-release`, # being pushed. Add an extra manifest (`latest` or `alpine`, as appropriate)
# as appropriate) to make it easier to track the latest release. # to make it easier for users to track the latest release.
if [[ "${DOCKER_TAG}" =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]]; then if [[ "${DOCKER_TAG}" =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]]; then
if [[ "${DOCKER_TAG}" == *alpine ]]; then if [[ "${DOCKER_TAG}" == *alpine ]]; then
manifest_lists+=(${DOCKER_REPO}:alpine-release) manifest_lists+=(${DOCKER_REPO}:alpine)
else else
manifest_lists+=(${DOCKER_REPO}:latest-release) manifest_lists+=(${DOCKER_REPO}:latest)
fi fi
fi fi