mirror of
https://code.forgejo.org/actions/forgejo-release.git
synced 2024-11-21 22:21:00 -05:00
trim refs/tags/ for short tag names
This commit is contained in:
parent
b818607d61
commit
12233a8d78
1 changed files with 3 additions and 0 deletions
|
@ -46,6 +46,9 @@ runs:
|
||||||
export TAG="${{ inputs.tag }}"
|
export TAG="${{ inputs.tag }}"
|
||||||
if test -z "$TAG"; then
|
if test -z "$TAG"; then
|
||||||
export TAG="${{ github.ref_name }}"
|
export TAG="${{ github.ref_name }}"
|
||||||
|
# until https://code.forgejo.org/forgejo/runner/issues/9 is fixed
|
||||||
|
# trim refs/tags/
|
||||||
|
TAG=${TAG##refs/tags/}
|
||||||
fi
|
fi
|
||||||
export TOKEN="${{ inputs.token }}"
|
export TOKEN="${{ inputs.token }}"
|
||||||
if test -z "$TOKEN"; then
|
if test -z "$TOKEN"; then
|
||||||
|
|
Loading…
Reference in a new issue