github-action-readme-generator 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-action-readme-generator",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "This is a CLI tool and GitHub Action that reads in the details from a \nGitHub Action's `action.yml` file and updates the `README.md` file\nwith the `name`, `description`, `usage`, `inputs`, `outputs`, and\nexamples of the action.\nConfiguration can be provided via a `.ghadocs.json` file stored in the\nroot directory of the Action's repository, via the command line when\nusing the cli, or via the `with:` section of this Action.\n\n\nThis tool uses markdown comments as delimiting tokens within the `README.md`\nfile to determine where to place the generated content.\n\n[`README.example.md`](README.example.md) example with all fields filled in, and no other free-form content.",
5
5
  "main": "dist/index.cjs",
6
6
  "types": "dist/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "bump:minor": "yarn version -i minor && yarn run release",
42
42
  "release": "./release.sh",
43
43
  "release:post": "yarn npm publish --access public --tag v${npm_package_version} --tag latest",
44
- "postversion": "git push origin --follow-tags && git push --tags",
44
+ "postversion": "git push --tags origin && git push origin",
45
45
  "precommit": "pretty-quick --staged",
46
46
  "prepare": "is-ci || husky install; yarn run build",
47
47
  "corepack": "corepack enable",