Skip to content

Commit 67589aa

Browse files
authored
Use consistent tag detection (#4)
1 parent 62b8f6e commit 67589aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Get tag name
1616
id: tagName
1717
run: |
18-
TAG=$(git describe --tags --exact-match)
18+
TAG=${GITHUB_REF##*/}
1919
echo ::set-output name=tag::${TAG}
2020
- name: checkout envoy
2121
uses: actions/checkout@v2
@@ -58,7 +58,7 @@ jobs:
5858
- name: Get tag name
5959
id: tagName
6060
run: |
61-
TAG=$(git describe --tags --exact-match)
61+
TAG=${GITHUB_REF##*/}
6262
echo ::set-output name=tag::${TAG}
6363
6464
- name: Run fetchenvoy

0 commit comments

Comments
 (0)