Is there a way to access the current tag that has been pushed in a Github Action? In CircleCI you can access this value with the $CIRCLE_TAG variable.
My Workflow yaml is being triggered by a tag like so:
on:
push:
tags:
- 'v*.*.*'
And I want to use that version number as a file path later on in the workflow.
