https://github.com/grafana/grafana
Raw File
Tip revision: 24ebf9e658e4210979c0dfe66cc96950d3b08515 authored by grafanabot on 15 December 2022, 21:56:19 UTC
"Release: Updated versions in package to 9.2.9"
Tip revision: 24ebf9e
publish.sh
#!/bin/sh

# no relation to publish.go

# shellcheck disable=SC2124

EXTRA_OPTS="$@"

# Right now we hack this in into the publish script.
# Eventually we might want to keep a list of all previous releases somewhere.
_releaseNoteUrl="https://community.grafana.com/t/release-notes-v7-0-x/29381"
_whatsNewUrl="https://grafana.com/docs/grafana/latest/guides/whats-new-in-v7-0/"

./scripts/build/release_publisher/release_publisher \
    --wn "${_whatsNewUrl}" \
    --rn "${_releaseNoteUrl}" \
    --version "${CIRCLE_TAG}" \
    --apikey  "${GRAFANA_COM_API_KEY}" "${EXTRA_OPTS}"
back to top