An open API service indexing awesome lists of open source software.

https://github.com/norwd/ghtag

GitHub Action to manage tags
https://github.com/norwd/ghtag

composite-action github-action github-actions reusable-workflow reusable-workflows tag tag-management tag-manager tagging

Last synced: 2 months ago
JSON representation

GitHub Action to manage tags

Awesome Lists containing this project

README

        

# tagme

GitHub Action to manage tags

## Usage

### Basic Setup

```yaml
---

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
```