We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83ae5db commit f8f3ef4Copy full SHA for f8f3ef4
.github/workflows/release.yml
@@ -14,7 +14,7 @@ jobs:
14
- name: "Submodules"
15
run: "git submodule update --init --recursive"
16
- name: "Get tag version"
17
- run: echo ::set-env name=TAG_VERSION::${GITHUB_REF#refs/*/}
+ run: echo ::set-env name=TAG_VERSION::${GITHUB_REF#refs/v*/}
18
- name: "Print tag version"
19
run: echo ${{ env.TAG_VERSION }}
20
- name: "Set up QEMU"
tasks/container.py
@@ -16,7 +16,7 @@
def _get_tag():
- tag_name = "{}:v{}".format(CONTAINER_IMAGE, get_version())
+ tag_name = "{}:{}".format(CONTAINER_IMAGE, get_version())
return tag_name
21
22
0 commit comments