To create a new release of this package, follow the steps below.
-
Ensure you have the latest changes
git checkout develop git pull origin develop
-
Create a release branch using today's date
git checkout -b release-YYYY-MM-DD git push -u origin release-YYYY-MM-DD
-
Ensure dependencies are installed, then run the release script
yarn yarn release
-
Push the changes (in accordance to the
release
script's output):git push --follow-tags origin release-YYYY-MM-DD
NOTE: Do not
npm publish
yourself. CI will do this for you. -
Open a Pull Request into the
master
branch by visitinghttps://github.com/dequelabs/cauldron/compare/master...<release-YYYY-MM-DD>?expand=1
in your browser (replacingYYYY-MM-DD
with the date)