--- # This job will create or update any badges set through other jobs. # It requires a Project Access Token or Personal Access Token with api scope set # as a CI/CD variable called GL_TOKEN. # To create your own automatic badges, add the following to your .gitlab-ci.yml: # badge:your_custom_job: # extends: .badge # variables: # NAME: "version" # MESSAGE: "1.2.3" # COLOR: "red" # URL: "${CI_PROJECT_URL}/tags/${CI_COMMIT_TAG}" # rules: # - if: ($CI_COMMIT_TAG =~ /^v[0-9]+(\.[0-9]+){2}$/ && $GL_TOKEN) # Make sure your_custom_job is replaced and unique, and you've changed the variables # according to your preferences. # Choose a color from this list: https://github.com/jongracecox/anybadge#colors # Make sure your rules at least includes the requirement of $GL_TOKEN .badge: image: registry.gitlab.com/just-ci/images/anybadge:latest stage: .post variables: GIT_STRATEGY: "none" script: - IMAGE_URL=${CI_PROJECT_URL}/-/jobs/artifacts/${CI_DEFAULT_BRANCH}/raw/badges/${NAME}.svg?job=${CI_JOB_NAME} - mkdir -p ci_badges - anybadge -l "${NAME}" -v "${MESSAGE}" -c "${COLOR}" -f "ci_badges/${NAME}.svg" - | if [ -z "${GL_TOKEN}" ]; then echo "[!] GL_TOKEN not set. You can check the badge in the artifacts. It will not be set." else echo "[*] Creating/updating badge..." BADGE_ID=$(curl -SsLf -H "PRIVATE-TOKEN: ${GL_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/badges" | jq --arg NAME "${NAME}" '.[] | select(.name==$NAME) | .id') || true if [ -z "${BADGE_ID}" ]; then echo "[-] Badge doesn't exist yet. We'll create a new one..." STATUS_CODE=$(curl -SsL -w "%{http_code}" -X POST -H "PRIVATE-TOKEN: ${GL_TOKEN}" -d "image_url=${IMAGE_URL}&link_url=${URL:-$CI_PROJECT_URL}&name=${NAME}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/badges" -o /dev/null) else echo "[*] Updating badge ID ${BADGE_ID}..." STATUS_CODE=$(curl -SsL -w "%{http_code}" -X PUT -H "PRIVATE-TOKEN: ${GL_TOKEN}" -d "image_url=${IMAGE_URL}&link_url=${URL:-$CI_PROJECT_URL}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/badges/${BADGE_ID}" -o /dev/null) fi if [ "${STATUS_CODE:0:1}" = "2" ]; then echo "[+] Badge set successfully." elif "${STATUS_CODE}" = "403" ]; then echo "[!] Access Forbidden. Does GL_TOKEN have access to badge creation? A Personal Access Token requires at least a Maintainer user." exit 1 else echo "[!] Something went wrong. We received the status code ${STATUS_CODE}." exit 1 fi fi artifacts: paths: - ci_badges/*.svg when: always needs: [] allow_failure: true