Forked from dawidd6/action-get-tag which has been an archived repo that I was relying on. Updated to fix issue with set-output
(Deprecated).
Simple Action that have only one responsibility - output tag name (parsed from GITHUB_REF
environment variable).
Should be used only when actual tag is pushed, otherwise the Action will exit with an error.
on:
push:
tags:
- '*'
- name: Get tag
id: tag
uses: devops-actions/[email protected]
with:
# Optionally strip `v` prefix
strip_v: true
- name: Use tag
run: echo ${{steps.tag.outputs.tag}}