Skip to content

GitHub Action to automatically add/adjust Git tag aliases based on a semantic versioning schema

License

Notifications You must be signed in to change notification settings

langroodi/tagize

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

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tagize

CI workflow

This is a GitHub Action to automatically add/adjust Git tag aliases based on a semantic versioning schema.

Docker Image Dependecies

  • Bash: > 4.0
  • Git: > 2.0
  • OpenSSH: > 7.0

Setup

  • Give the GitHub Actions the write permission to the repo using this tutorial;
  • Add/merge following YAML to your workflow:
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
  # Triggers on (pre-)release
  release:
    types: [published]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "build"
  build:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - uses: actions/checkout@v3

      # Execute 'tagize' action
      - uses: langroodi/tagize@v1