Skip to content

Commit

Permalink
Strip alpha tag from release workflow (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zageron committed Jun 30, 2020
1 parent f14469d commit 400ca2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
shell: bash
id: versionNumber
run: echo ::set-output name=tag::${GITHUB_REF/refs\/tags\/v/}
run: echo ::set-output name=tag::$(echo ${GITHUB_REF/refs\/tags\/v/} | sed -r 's/([0-9]+\.[0-9]+\.[0-9]+)-.*/\1/' )

- name: Checkout
uses: actions/checkout@v2.0.0
Expand Down

0 comments on commit 400ca2a

Please sign in to comment.