Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 343 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 343 Bytes

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