Skip to content
Yucheng Chuang edited this page Jul 9, 2018 · 3 revisions

Why

We added some of our CLI switches, such as -p for AWS publish, which are not available in the official Serverless.

What

See https://github.com/moneytree/serverless/compare/v1.26.0...v1.26.0-mt for what we added.

How to sync version

git remote add upstream [email protected]:serverless/serverless.git
git fetch upstream --tags
git checkout -b pr/update-serverless
git merge --no-ff v1.28.0 # or any version you want to ship
git push -u origin head

Open PR: https://github.com/moneytree/serverless/compare/master...moneytree:pr/update-serverless

Merge, then release with a new tag with -mt suffix:

https://github.com/moneytree/serverless/releases/new?tag=v[x.y.z]-mt

Clone this wiki locally