Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 855 Bytes

RELEASING.md

File metadata and controls

18 lines (15 loc) · 855 Bytes

Releasing

Refer to this document for versioning best practices.

To cut a new release:

  • Create a new GitHub release and publish it to Marketplace (on GH)
    • Update CHANGELOG.md
    • Create a new release
    • Make sure "Publish this Action to the GitHub Marketplace" is selected
    • Enter a new tag name v1.2.3 to create a new tag on publish
    • Enter release title "Update Gradle Wrapper Action v1.2.3"
    • Leave release description empty
    • Check the new release appears on Marketplace
  • Move the v1 tag (locally)
    • git pull
    • git tag -fa v1 -m "Update v1 tag to v1.2.3"
    • git push origin v1 --force