actions/git/tag/action.yaml

11 lines
178 B
YAML
Raw Normal View History

2023-08-06 20:53:44 -04:00
name: Git Tag
desciption: Tag commit with version number
runs:
using: composite
container: alpine/git
steps:
- run: |
2023-08-06 21:00:20 -04:00
$TAG=$(git describe)
2023-08-06 20:57:32 -04:00
echo "$TAG"