chore: troubleshooting asf.yaml
1 file changed
tree: 5c4340d2911e8193472e76672e33978e56af897c
  1. .github/
  2. deploy-github-pages/
  3. export-gradle-properties/
  4. post-release/
  5. pre-release/
  6. release-notes/
  7. start-oracle-cloud-runners/
  8. stop-oracle-cloud-runners/
  9. .asf.yaml
  10. .gitignore
  11. README.md
README.md

Grails github-actions

Custom GitHub actions used by the Grails team.

Releasing a new version

To release a new version, you need to create a new tag with the version number (prefixed with v). This can be done via the GitHub Releases page or via the command line.

git tag v3.0
git push origin v3.0

To make major version references work, create a new branch with the major version number (if it does not already exist).

git checkout -b v3 v3.0
git push origin v3

When a new minor version is released, update the major version branch to point to the new release tag.

git checkout v3
git reset --hard v3.1
git push --force origin v3

Usages

Used by: https://github.com/search?q=org%3Agrails+%22uses%3A+grails%2Fgithub-actions%2F%22+language%3Ayml&type=code