Skip to content
Dat Hoang edited this page Jul 31, 2018 · 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. 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
  • The main file of the plugin

Changelog

Features and Roadmaps:

  • File readme.txt

Warnings

  • File readme.txt.

Release

  • Release on GitHub
  • Release on WordPress.org

Translation

Clone this wiki locally