2018-11-05 16:26:19 +01:00
|
|
|
#!/bin/sh
|
2018-10-03 11:17:46 +02:00
|
|
|
|
|
|
|
|
# no relation to publish.go
|
|
|
|
|
|
2019-07-23 13:12:33 +03:00
|
|
|
# shellcheck disable=SC2124
|
|
|
|
|
|
2018-11-19 16:55:30 +01:00
|
|
|
EXTRA_OPTS="$@"
|
|
|
|
|
|
2018-11-20 16:23:24 +01:00
|
|
|
# Right now we hack this in into the publish script.
|
2018-10-03 11:17:46 +02:00
|
|
|
# Eventually we might want to keep a list of all previous releases somewhere.
|
2020-04-28 21:26:36 +02:00
|
|
|
_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/"
|
2018-10-03 11:17:46 +02:00
|
|
|
|
2018-10-03 16:47:37 +02:00
|
|
|
./scripts/build/release_publisher/release_publisher \
|
2019-07-23 13:12:33 +03:00
|
|
|
--wn "${_whatsNewUrl}" \
|
|
|
|
|
--rn "${_releaseNoteUrl}" \
|
|
|
|
|
--version "${CIRCLE_TAG}" \
|
|
|
|
|
--apikey "${GRAFANA_COM_API_KEY}" "${EXTRA_OPTS}"
|