Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heyvito/semver-releaser
Action for releasing using SemVer + Conventional Commits
https://github.com/heyvito/semver-releaser
actions conventional-commits semantic-version semantic-versioning semver semver-release
Last synced: 17 days ago
JSON representation
Action for releasing using SemVer + Conventional Commits
- Host: GitHub
- URL: https://github.com/heyvito/semver-releaser
- Owner: heyvito
- License: mit
- Created: 2021-06-16T14:38:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-27T15:11:20.000Z (11 months ago)
- Last Synced: 2024-10-14T09:11:21.232Z (about 1 month ago)
- Topics: actions, conventional-commits, semantic-version, semantic-versioning, semver, semver-release
- Language: Go
- Homepage:
- Size: 52.7 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# semver-releaser
This action provides a clean way to create SemVer
releases based on Conventional Commits.# Using this Action
This action relies on tags present on the repository,
so it is required to unshallow the repository cloned by
actions/checkout@v2:```yaml
name: Releaseon:
push:
branches:
- masterjobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2- name: Prepare local repository
run: git fetch --prune --unshallow --tags -f- name: semver-releaser
uses: heyvito/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```## License
```
MIT LicenseCopyright (c) 2021 - Victor Gama de Oliveira
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```