publish.sh 523 B

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