Clone this repo:
  1. b958a8d Merge pull request #16 from jdaugherty/main by James Daugherty · 5 weeks ago main
  2. fbef04a Remove build by James Daugherty · 5 weeks ago
  3. c09f5f2 Merge pull request #15 from jdaugherty/main by James Daugherty · 5 weeks ago
  4. f68cd99 Specify directories for dependabot by James Daugherty · 5 weeks ago
  5. e43f746 Add working directories by James Daugherty · 5 weeks ago

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