https://github.com/filozoff/action-make-tag
Create and push git tag for GitHub
https://github.com/filozoff/action-make-tag
Last synced: 5 months ago
JSON representation
Create and push git tag for GitHub
- Host: GitHub
- URL: https://github.com/filozoff/action-make-tag
- Owner: Filozoff
- License: mit
- Created: 2025-03-13T17:17:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-13T18:48:29.000Z (over 1 year ago)
- Last Synced: 2025-09-11T17:58:22.014Z (10 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Filozoff/action-make-tag
A simple GitHub Action that creates and push git tag using GitHub API.
## Usage
### Inputs
- `commit-sha`: Commit sha (optional). Default: `github.sha`.
- `tag`: Tag name.
- `token`: Authorization token (optional). Default: `GITHUB_TOKEN` env.
### Setup
```yaml
jobs:
make-tag:
runs-on: linux-latest
steps:
- name: Make tag
uses: Filozoff/action-make-tag@v1
with:
commit-sha: ${{ github.sha }}
tag: "1.1.2"
token: "..."
```
## Limitations
- None
## License
[MIT License](LICENSE)