From 4915c9708f94cc1d0f1ecc1550b2c28e355068dd Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Tue, 26 May 2020 10:05:23 +0200 Subject: [PATCH] Updated Release checklist (markdown) --- Release-checklist.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Release-checklist.md b/Release-checklist.md index f5f5175..63a63b5 100644 --- a/Release-checklist.md +++ b/Release-checklist.md @@ -8,6 +8,17 @@ * [ ] 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 `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 * [ ] Merge PR into new release branch * [ ] Make a new alpha tag to test tag CI