Skip to content

(Rough) Release Notes

Daniel Ternyak edited this page Feb 8, 2018 · 1 revision
  1. git checkout master
  2. git pull origin master
  3. git checkout -b release-<month>-<day>-<attempt>
    1. e.g. git checkout -b release-feb-8-1
  4. gulp prep
  5. git add chrome-extension
  6. git add dist
  7. git commit -m "release-<month>-<day>-<attempt>"
  8. git checkout gh-pages
  9. git pull origin gh-pages
  10. git checkout -b gh-pages-release-<month>-<day>-<attempt>
  11. git checkout release-feb-8-1 -- dist
  12. mv dist/* . && rm -rf nestedtestdir
  13. Review changes to gh-pages, ensure adds up with expected changes.
  14. git add -A
  15. git commit -m "Release <date> - <attempt>"
  16. Open PR to gh-pages
Clone this wiki locally