2018-11-05 23:26:19 +08:00
|
|
|
#!/bin/sh
|
2018-10-03 17:17:46 +08:00
|
|
|
|
|
|
|
# no relation to publish.go
|
|
|
|
|
2018-11-19 23:55:30 +08:00
|
|
|
EXTRA_OPTS="$@"
|
|
|
|
|
2018-11-20 23:23:24 +08:00
|
|
|
# Right now we hack this in into the publish script.
|
2018-10-03 17:17:46 +08:00
|
|
|
# Eventually we might want to keep a list of all previous releases somewhere.
|
2019-01-31 00:14:42 +08:00
|
|
|
_releaseNoteUrl="https://community.grafana.com/t/release-notes-v6-0-x/14010"
|
|
|
|
_whatsNewUrl="http://docs.grafana.org/guides/whats-new-in-v6-0/"
|
2018-10-03 17:17:46 +08:00
|
|
|
|
2018-10-03 22:47:37 +08:00
|
|
|
./scripts/build/release_publisher/release_publisher \
|
2018-10-03 17:17:46 +08:00
|
|
|
--wn ${_whatsNewUrl} \
|
|
|
|
--rn ${_releaseNoteUrl} \
|
|
|
|
--version ${CIRCLE_TAG} \
|
2018-11-19 23:55:30 +08:00
|
|
|
--apikey ${GRAFANA_COM_API_KEY} ${EXTRA_OPTS}
|