-
Notifications
You must be signed in to change notification settings - Fork 1
Packaging Releases
Richard Luck edited this page Jul 3, 2020
·
5 revisions
IMPORTANT: Ensure that SGW_DEBUG is set to false before proceeding.
After all changes have been committed to git, tag the version of code in git:
# from the `trunk` directory
# ensure you're in the `master` git branch
TAG=2.1.0
git tag -a $TAG -m "tagging release version $TAG"
git push upstream $TAGTo make the tag the production version and trigger the Updater, you need to set the tagged version as the "current release"
# from the `root directory
# this is a validation step - feel free to skip if not needed
svn status
# push the tag
svn cp trunk tags/$TAG
svn --username=dimax ci -m "tagging version $TAG" tags/$TAGOnce the version has been verified, promote it to WordPress.org:
svn --username=dimax ci -m "upping stable version to $TAG" trunk