-
Notifications
You must be signed in to change notification settings - Fork 108
Release Process (DRAFT)
Drew Farris edited this page Aug 14, 2017
·
3 revisions
- git co master
- git pull
- mvn versions:set -DnewVersion=A.B.C
- find . -name pom.xml.versionsBackup -exec rm {} ;
- mvn clean verify -Pcollectd
- git diff - verify only changes are to versions in pom
- Update TIMELY_VERSION in server/Dockerfile and server/docker-compose.yml
- Update grafana App version in timely-app/dist/plugin.json - timely-app/plugin.json
- git commit -a
- git tag -a A.B.C <-- add release notes to the tag
- mvn versions:set -DnewVersion=A.B.D-SNAPSHOT
- find . -name pom.xml.versionsBackup -exec rm {} ;
- git diff - verify only changes are to versions in pom
- Update TIMELY_VERSION in server/Dockerfile and server/docker-compose.yml
- Update grafana App version in timely-app/dist/plugin.json - timely-app/plugin.json
- git commit -a
- git push
- git push --tags