Updated Release checklist (markdown)

Reuben Morais 2020-05-26 10:05:23 +02:00
Родитель aef86bfc69
Коммит 4915c9708f
1 изменённых файлов: 11 добавлений и 0 удалений

@ -8,6 +8,17 @@
* [ ] Create a local branch based on the branch created above * [ ] Create a local branch based on the branch created above
* [ ] Change `.taskcluster.yml` and `taskcluster/github-events.cyml` to reference the new branch instead of master * [ ] Change `.taskcluster.yml` and `taskcluster/github-events.cyml` to reference the new branch instead of master
* [ ] Change `EXAMPLES_CHECKOUT_TARGET` in `taskcluster/win-opt-base.tyml` and `examples-base.tyml` to checkout the new release branch instead of master * [ ] Change `EXAMPLES_CHECKOUT_TARGET` in `taskcluster/win-opt-base.tyml` and `examples-base.tyml` to checkout the new release branch instead of master
$ cd DeepSpeech
$ git checkout master && git pull
$ git checkout -b r0.8
$ git push origin r0.8
$ git checkout -b add-r0.8
$ for i in .taskcluster.yml taskcluster/github-events.cyml; do sed -i.bak -e 's/- master/- r0.8/' $i; done
$ git add .taskcluster.yml taskcluster/github-events.cyml
$ git commit -m "Switch CI to r0.8"
$ git push origin add-r0.8
* [ ] Make a PR into the release branch with above changes and make sure CI works * [ ] Make a PR into the release branch with above changes and make sure CI works
* [ ] Merge PR into new release branch * [ ] Merge PR into new release branch
* [ ] Make a new alpha tag to test tag CI * [ ] Make a new alpha tag to test tag CI