Deploy readme and asset updates to the WordPress Plugin Repository.
This Action commits any readme and WordPress.org-specific assets changes in your specified branch to the WordPress.org plugin repository if no other changes have been made since the last deployment to WordPress.org. This is useful for updating things like screenshots or Tested up to
separately from functional changes, provided your Git branching methodology avoids changing anything else in the specified branch between functional releases. It is highly recommended that you use a stable branch where you only merge readme/asset commits in between larger functional merges that only occur when preparing for a release (often implemented as trunk
vs. develop
).
Because the WordPress.org plugin repository shows information from the readme in the specified Stable tag
, this Action also attempts to parse out the stable tag from your readme and deploy to there as well as trunk
. If your stable tag is trunk
or a tag that does not exist in the tags
subfolder, it will skip that part of the update and only update trunk
and/or assets
.
Important note: If your development process leads to a situation where trunk
(or other specified branch) only contains changes to the readme or assets directory since the last sync to the plugin directory and those changes are in preparation for the next release, those changes will go live and potentially be misleading to users. Usage of this Action assumes a fairly traditional Git methodology that involves merging all changes to trunk
when functional changes are ready and that this seemingly unlikely situation will therefore not happen in your repo; there are no safeguards against syncing changes based on readme/asset content, as that cannot be predicted.
☞ This Action is meant to be used in tandem with our WordPress.org Plugin Deploy Action
☞ Check out our collection of WordPress-focused GitHub Actions
SVN_USERNAME
SVN_PASSWORD
Secrets are set in your repository settings. They cannot be viewed once stored.
SLUG
- defaults to the respository name, customizable in case your WordPress repository has a different slug or is capitalized differently.ASSETS_DIR
- defaults to.wordpress-org
, customizable for other locations of WordPress.org plugin repository-specific assets that belong in the top-levelassets
directory (the one on the same level astrunk
).README_NAME
- defaults toreadme.txt
, customizable in case you useREADME.md
instead, which is now quietly supported in the WordPress.org plugin repository.IGNORE_OTHER_FILES
- defaults tofalse
, which means that all your files are copied (as in WordPress.org Plugin Deploy Action, respecting.distignore
and.gitattributes
), and the Action will bail if anything except assets andreadme.txt
are modified. See "Important note" above. If you set this variable totrue
, then only assets andreadme.txt
will be copied, and changes to other files will be ignored and not committed.
name: Plugin asset/readme update
on:
push:
branches:
- trunk
jobs:
trunk:
name: Push to trunk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress.org plugin asset/readme update
uses: 10up/action-wordpress-plugin-asset-update@stable
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
- It would be more efficient to additionally use the
paths
filter for thepush
action to reduce the number of runs. So far in testing it is possible to limit it to pushes that include readme/asset files as specified, but not ones that only include those files. The Action itself still needs to run as written because it compares the totality of changes in the branch against what's in SVN and not just the contents of the current push.
A complete listing of all notable changes to WordPress.org Plugin Readme/Assets Update are documented in CHANGELOG.md.
Want to help? Check out our contributing guidelines to get started.
Active: 10up is actively working on this, and we expect to continue work for the foreseeable future including keeping tested up to the most recent version of WordPress. Bug reports, feature requests, questions, and pull requests are welcome.