Skip to content

GitHub action for tagging git semantic versions

applicreation/git-release-action

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

git-release-action

Usage

on:
  release:
    types:
      - published
permissions:
  contents: write
jobs:
  release:
    runs-on: ubuntu-latest
    steps:  
      - uses: actions/checkout@v4
      - uses: applicreation/versions-action@v2
        id: versions
        with:
          tag: ${{ github.ref_name }}
      - uses: applicreation/git-release-action@v2
        with:
          use_prefix: ${{ steps.versions.outputs.has_prefix }}
          major: ${{ steps.versions.outputs.major }}
          minor: ${{ steps.versions.outputs.minor }}
          patch: ${{ steps.versions.outputs.patch }}