close
Skip to content

auguwu/git-tag-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

🏏 Git Tag Action

GitHub action to split your Git release tag into SemVer 2.0 parts

This is a simple action to split your git tag, usually for releases, into a SemVer object which you can use for some reason!

Usage

on:
    release:
        types:
            - published
jobs:
    release:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v3
            - uses: auguwu/git-tag-action@v2
              id: git-tag
            - run:
                  echo "${{ steps.outputs.git-tag.version }}"
                  # "1.0.0-alpha.3"

Outputs

Name Description
version Returns the versionm that was collected.
major Major version number
minor Minor version number
patch Patch version number
build? Build version number, if any.
prerelease If the action was tagged with pre-publish in the event.
json Returns a JSON string of the output, with this value omitted.

License

git-tag-action is released under the MIT License with love by Noel. :3

About

🏏 GitHub action to split your Git release tag into SemVer 2.0 parts

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors