Skip to content

Commit 6409ec1

Browse files
committed
update
1 parent 87c9e11 commit 6409ec1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
run: echo ::set-output name=TAG::v1.0.0
3131
- name: get version
3232
id: get_version
33-
run: echo "::set-output name=version::$(${{ steps.get_pushed_tag.outputs.TAG }})"
33+
# strip the "v" from tag
34+
run: echo "::set-output name=version::$(${{ steps.get_pushed_tag.outputs.TAG }} | tail -c+2)"
3435
- run: bazel build //...
3536
- run: cd examples && bazel build //...
3637
- run: cd examples && bazel test //...

0 commit comments

Comments
 (0)