publish.sh 481 B

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