We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7bf70 commit 51c555dCopy full SHA for 51c555d
.github/workflows/create_release.yml
@@ -34,7 +34,8 @@ jobs:
34
35
- name: get version
36
id: get_version
37
- run: echo "::set-output name=version::$(${${{ steps.get_pushed_tag.outputs.TAG:1}}})"
+ # strip the "v" from tag
38
+ run: echo "::set-output name=version::$(echo ${{ steps.get_pushed_tag.outputs.TAG }} | tail -c+2)"
39
40
- name: Create Release
41
uses: softprops/action-gh-release@v1
0 commit comments