Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 415 Bytes

MAINTAINERS.md

File metadata and controls

22 lines (16 loc) · 415 Bytes

Maintainers

Instructions for developing and releasing this action.

Develop

npm install
npm run package

Publish

  • Update the version in package.json
  • Make sure /dist is up to date: npm run package
  • Commit the version update: git commit -a -m "Update to version x.x.x"
  • Push a new tag
git tag -a -m "Update to version x.x.x" vx.x.x
git push --follow-tags