Skip to content

Commit 47c3d8f

Browse files
committed
make validate tag step more verbose
this step is part of the deploy-workflow. It now echos the releasetag that is used in the if-statement
1 parent b44a91c commit 47c3d8f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/publish.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
pip install setuptools wheel twine
3939
- name: get infos from Tag
4040
run: |
41-
if [[ $RELEASE_TAG =~ (([0-9]+)\.([0-9]+)\.([0-9]+))([-./]dev([0-9]+))? ]]
41+
echo "RELEASE_TAG=${RELEASE_TAG}"
42+
if [[ $RELEASE_TAG =~ (([0-9]+)\.([0-9]+)\.([0-9]+))([-./]dev([0-9]+))?$ ]]
4243
then
4344
echo "VERSION=${BASH_REMATCH[0]}" | tee $GITHUB_ENV
4445
echo "VERSION_MAJOR=${BASH_REMATCH[2]}" | tee $GITHUB_ENV

0 commit comments

Comments
 (0)