Skip to content

getshifter/shifter-github

Repository files navigation

How to update your plugin/theme.

To release the new version, please do as follows:

Tag and push to GitHub, then upload the package by one of the ways as follows.

$ git tag 1.1.0
$ git push origin 1.1.0
  • 1.1.0 is a version number, it has to be same with version number in your WordPress plugin.
  • You have to commit vendor directory in your plugin.

A. Manually release the new version.

  1. Please visit "releases" in your GitHub repository.
  2. Choose a tag.
  3. Fill out the release note and title.
  4. Upload your plugin which is comporessed with zip. (Optional)
  5. Press "Publish release".

B. Automated release the new version with GitHub Actions.

You can upload the package automat GitHub Actions.

As for now, GitHub Actions service is in beta, so you have to sign up the Beta here

When the service is ready you will find the Actions tab on the top page of your repository, then follow the steps below:

  1. Then, copy the .github directory on the below url to the root directory of your local repository. getshifter/shifter-github-hosting-plugin-sample
  2. It must be look like: /path_to_your_repository/.github/workflows/release.yml
  3. Open the release.yml file with your favorite editor and change some lines:
    • You MUST change the PACKAGE_NAME to your package name.
    • Also, if you need:
      • change FILES_TO_ARCIVE
      • comment out the composer install section
      • uncomment npm install section
  4. After changed some lines, commit and push it to your GitHub repository.

Now when you push your tag to GitHub, the release package will be created automatically.

Example Projects

Please install old version of following projects, then you can see update notice.

These projects deploy new releases automatically with GitHub Actions.

Please check .github/workflows/release.yml

C. Automated release the new version with Travis.

Also, you can use Automatic release with Travis.

Following is an example of the .travis.yml for automatic release.

https://github.com/miya0001/miya-gallery/blob/master/.travis.yml

You can generate deploy: section by The Travis Client like following.

$ travis setup releases