We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b44a91c commit 47c3d8fCopy full SHA for 47c3d8f
1 file changed
.github/workflows/publish.yaml
@@ -38,7 +38,8 @@ jobs:
38
pip install setuptools wheel twine
39
- name: get infos from Tag
40
run: |
41
- if [[ $RELEASE_TAG =~ (([0-9]+)\.([0-9]+)\.([0-9]+))([-./]dev([0-9]+))? ]]
+ echo "RELEASE_TAG=${RELEASE_TAG}"
42
+ if [[ $RELEASE_TAG =~ (([0-9]+)\.([0-9]+)\.([0-9]+))([-./]dev([0-9]+))?$ ]]
43
then
44
echo "VERSION=${BASH_REMATCH[0]}" | tee $GITHUB_ENV
45
echo "VERSION_MAJOR=${BASH_REMATCH[2]}" | tee $GITHUB_ENV
0 commit comments