Resolve "Missing version badge" #12

Merged
therbron merged 3 commits from 4-missing-version-badge into master 2022-05-21 19:02:44 +00:00
Showing only changes of commit ef64468bc3 - Show all commits

View File

@ -7,15 +7,13 @@ build-image:
services: services:
- name: docker:dind - name: docker:dind
script: script:
- source .env.update
- wget "https://img.shields.io/badge/image version-$GITLAB_SHORT_VER-informational" -O ../../image_version.svg
- if [ "$NEED_UPDATE" = false ]; then exit 0; fi
- apk add git wget curl jq - apk add git wget curl jq
- git clone https://gitlab.com/gitlab-org/omnibus-gitlab - git clone https://gitlab.com/gitlab-org/omnibus-gitlab
- cd omnibus-gitlab - cd omnibus-gitlab
- "HALIA_VER=$(curl --request GET -L --header 'Accept: application/json' --header 'Content-Type: application/json' https://git.halia.dev/api/v4/projects/24/registry/repositories/6/tags | jq -r '.[].location' | grep -v latest | cut -d ':' -f2 | sort -V | tail -1)" - "HALIA_VER=$(curl --request GET -L --header 'Accept: application/json' --header 'Content-Type: application/json' https://git.halia.dev/api/v4/projects/24/registry/repositories/6/tags | jq -r '.[].location' | grep -v latest | cut -d ':' -f2 | sort -V | tail -1)"
- "GITLAB_VER=$(git tag | sort -V | grep -v rc | grep ce | tail -1)" - "GITLAB_VER=$(git tag | sort -V | grep -v rc | grep ce | tail -1)"
- "GITLAB_SHORT_VER=$(echo $GITLAB_VER | cut -d '+' -f 1)" - "GITLAB_SHORT_VER=$(echo $GITLAB_VER | cut -d '+' -f 1)"
- wget "https://img.shields.io/badge/image version-$GITLAB_SHORT_VER-informational" -O ../../image_version.svg
- if [ $HALIA_VER != $GITLAB_VER ]; then echo "No update available, exciting..."; exit 0; fi - if [ $HALIA_VER != $GITLAB_VER ]; then echo "No update available, exciting..."; exit 0; fi
- git checkout $GITLAB_VER - git checkout $GITLAB_VER
- "GITLAB_VER=$(echo $GITLAB_VER | tr '+' -)" - "GITLAB_VER=$(echo $GITLAB_VER | tr '+' -)"