Skip to content
Dat Hoang edited this page Sep 11, 2020 · 8 revisions

Transfer a GitHub tag to a WP.org version.

Detailed steps transferring a GitHub tag (aka release) to a WP.org version (aka releasing the new version/tag via SVN).

Assume that we're updating from version 1.0 to 2.0:

  • 1. In the local computer, run svn co https://plugins.svn.wordpress.org/woo-viet
  • 2. Copy the new version from GitHub to tags/ folder like tags/2.0
  • 3. Run this to add it to SVN: svn add tags/2.0
  • 4. Delete the trunk folder: svn rm trunk
  • 5. Copy the new version to trunk: svn cp tags/2.0 trunk
  • 6. Prepare WP.org password as it may be used in step 7
  • 7. Commit to the SVN online folder: svn ci -m 'Add tag 2.0 and replace trunk by tag 2.0'

Reference:

Check-list for a new release

Version:

  • File readme.txt: Stable tag, Tested up to (WP Core version).
  • The main file of the plugin: Version, WC tested up to.

Changelog

Features and Roadmaps:

  • File readme.txt

Warnings (Upgrade Notice)

  • File readme.txt.

Release

  • Release on GitHub
  • Release on WordPress.org

Translation