publish.sh 562 B

123456789101112131415161718
  1. #!/bin/sh
  2. # no relation to publish.go
  3. # shellcheck disable=SC2124
  4. EXTRA_OPTS="$@"
  5. # Right now we hack this in into the publish script.
  6. # Eventually we might want to keep a list of all previous releases somewhere.
  7. _releaseNoteUrl="https://community.grafana.com/t/release-notes-v6-0-x/14010"
  8. _whatsNewUrl="http://docs.grafana.org/guides/whats-new-in-v6-0/"
  9. ./scripts/build/release_publisher/release_publisher \
  10. --wn "${_whatsNewUrl}" \
  11. --rn "${_releaseNoteUrl}" \
  12. --version "${CIRCLE_TAG}" \
  13. --apikey "${GRAFANA_COM_API_KEY}" "${EXTRA_OPTS}"