fix(release): mark latest release by semver instead of creation date … #54
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Geolonia Release (auto on vX.Y.Z tag) | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' # Only run on semver-like tags | |
| jobs: | |
| publish: | |
| uses: geolonia/.github/.github/workflows/reusable-release-auto-on-tag.yml@v1 | |
| secrets: inherit | |
| # Optional settings (uncomment to override defaults): | |
| # with: | |
| # move_major_tag: true | |
| # move_minor_tag: true | |
| # generate_release_notes: true | |
| # prerelease: false | |
| # tag_pattern: '^v([0-9]+)\.([0-9]+)\.([0-9]+)$' |