github intuit/auto v9.18.0

latest releases: v11.3.0, v11.2.1, v11.2.0...
4 years ago

Release Notes

From #1033

Install @auto-it/exec to easily run bash scripts during the auto release pipeline! Right now it doesn't handle every hook in auto but it exposes enough to quickly write plugins.

{
  "plugins": [
    [
      "exec",
      {
        "afterShipIt": "echo 'Do something cool'"
      }
    ]
    // other plugins
  ]
}

Here is an example of a super light weight version of the npm and gh-pages plugins (Note: This misses out on a lot of features that are in the official plugins)

{
  "plugins": [
    [
      "exec",
      {
        "version": "npm version $ARG_0",
        "publish": "npm publish && git push --tags",
        "afterRelease": "yarn docs && push-dir --dir=docs --branch=gh-pages"
      }
    ]
    // other plugins
  ]
}

🚀 Enhancement

Authors: 1

Don't miss a new auto release

NewReleases is sending notifications on new releases.