Skip to content

Commit ce04a00

Browse files
committed
fix: test
1 parent 0cdd867 commit ce04a00

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/bump-and-release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ jobs:
7373
CURRENT_VERSION="0.0.0"
7474
else
7575
echo "Found latest tag: $LATEST_TAG"
76-
CURRENT_VERSION="${LATEST_TAG#v}"
76+
if: [ same_tag == "true" ]
77+
CURRENT_VERSION="${LATEST_TAG_DAV#v}"
78+
else
79+
CURRENT_VERSION="${LATEST_TAG#v}"
80+
fi
7781
fi
7882
echo "version=$CURRENT_VERSION" >> $GITHUB_OUTPUT
7983

0 commit comments

Comments
 (0)