We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87c9e11 commit 6409ec1Copy full SHA for 6409ec1
.github/workflows/ci.yml
@@ -30,7 +30,8 @@ jobs:
30
run: echo ::set-output name=TAG::v1.0.0
31
- name: get version
32
id: get_version
33
- run: echo "::set-output name=version::$(${{ steps.get_pushed_tag.outputs.TAG }})"
+ # strip the "v" from tag
34
+ run: echo "::set-output name=version::$(${{ steps.get_pushed_tag.outputs.TAG }} | tail -c+2)"
35
- run: bazel build //...
36
- run: cd examples && bazel build //...
37
- run: cd examples && bazel test //...
0 commit comments