We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85bc283 commit 4a7b61fCopy full SHA for 4a7b61f
1 file changed
.github/workflows/pipeline.yml
@@ -37,7 +37,8 @@ jobs:
37
id: versioner
38
run: |
39
if [[ ${{ github.event_name }} == 'release' ]]; then
40
- version="${github.ref##*/}"
+ version="${{ github.ref }}"
41
+ version="${version##*/}"
42
version="${version/[^0-9.]/}"
43
else
44
version="0.0.${{ github.run_number }}"
0 commit comments