Skip to content

Commit f8f3ef4

Browse files
committed
Remove v from tag
1 parent 83ae5db commit f8f3ef4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: "Submodules"
1515
run: "git submodule update --init --recursive"
1616
- name: "Get tag version"
17-
run: echo ::set-env name=TAG_VERSION::${GITHUB_REF#refs/*/}
17+
run: echo ::set-env name=TAG_VERSION::${GITHUB_REF#refs/v*/}
1818
- name: "Print tag version"
1919
run: echo ${{ env.TAG_VERSION }}
2020
- name: "Set up QEMU"

tasks/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
def _get_tag():
19-
tag_name = "{}:v{}".format(CONTAINER_IMAGE, get_version())
19+
tag_name = "{}:{}".format(CONTAINER_IMAGE, get_version())
2020
return tag_name
2121

2222

0 commit comments

Comments
 (0)