mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
2a57e1108c
* Put what's new and release notes URLs in package.json * Upgrade build pipeline tool
19 lines
578 B
Bash
Executable File
19 lines
578 B
Bash
Executable File
#!/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}"
|