https://github.com/richardsimko/update-tag
A Github action that simply tags the repository with the specified tag.
https://github.com/richardsimko/update-tag
github-actions github-actions-javascript github-actions-nodejs
Last synced: 21 days ago
JSON representation
A Github action that simply tags the repository with the specified tag.
- Host: GitHub
- URL: https://github.com/richardsimko/update-tag
- Owner: richardsimko
- License: mit
- Created: 2020-04-24T12:13:28.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T03:06:10.000Z (28 days ago)
- Last Synced: 2025-04-03T04:04:18.484Z (28 days ago)
- Topics: github-actions, github-actions-javascript, github-actions-nodejs
- Language: TypeScript
- Homepage:
- Size: 23.3 MB
- Stars: 24
- Watchers: 2
- Forks: 11
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Update Tag Action
A GitHub action that simply tags the repository with the specified tag. If the tag exists it gets updated.## Usage
```yml
name: Deployon: [deployment]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Tag Repo
uses: richardsimko/update-tag@v1
with:
tag_name: name-of-tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```### Inputs
- **tag_name** _(required)_ - The name of the tag you want to create or update.