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
- Host: GitHub
- URL: https://github.com/norwd/ghtag
- Owner: norwd
- License: unlicense
- Created: 2022-12-11T19:40:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T01:39:50.000Z (over 2 years ago)
- Last Synced: 2025-03-21T18:52:19.118Z (2 months ago)
- Topics: composite-action, github-action, github-actions, reusable-workflow, reusable-workflows, tag, tag-management, tag-manager, tagging
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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: writeon:
push:
branches:
- mainjobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: norwd/ghtag@main
with:
tag: v0.${{ github.run_id }}.0
```