Uploading new versions of the plugin to the WordPress store
Here is how you upload a new version.
- Update the
Version: <version>
inindex.php
. - Add a changelog entry for the new version to
readme.txt
. - (optional) Update version numbers strewn about various php files (like
class-wc-gateway-komoju.php
). - Run
git tag <your new version>
. - Run
git push --tags
. - GitHub Actions should deploy for you.
One thing to note: as of writing, the deploy action does not depend on the test action passing. You should make sure tests pass before running git push --tags
- or maybe change the actions so that deployment depends on tests!