diff --git a/action.yml b/action.yml index d679e9d..f7a7aea 100644 --- a/action.yml +++ b/action.yml @@ -14,6 +14,10 @@ inputs: description: 'The branch that triggered the workflow run.' default: ${{ github.ref }} required: false + strip_tag_prefix: + description: 'The tag prefix to strip i.e v0.0.1 -> (strip v) -> 0.0.1' + default: '' + required: false outputs: is_default: @@ -70,7 +74,7 @@ runs: run: | if [[ ${{ startsWith(inputs.ref, 'refs/tags/') }} ]]; then export REF=${{ inputs.ref }} - TAG=${REF/refs\/tags\//} + TAG=${REF/refs\/tags\${{ inputs.strip_tag_prefix }}//} echo "::set-output name=tag::$TAG" fi shell: bash