Skip to content

norwd/ghtag

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

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tagme

GitHub Action to manage tags

Usage

Basic Setup

---

name: "Tag new beta version on every push to main"
permissions:
  contents: write

on:
  push:
    branches:
      - main

jobs:
  tag:
    runs-on: ubuntu-latest
    steps:
      - uses: norwd/ghtag@main
        with:
          tag: v0.${{ github.run_id }}.0

Packages

 
 
 

Contributors