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