Skip to content

Commit e461be5

Browse files
committed
fix: do not use v{} tags in release workflow
1 parent 8d599b3 commit e461be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
echo "PKG_NAME=${PKG_PREFIX}" >> "${GITHUB_ENV}"
4242
echo "PKG_VERSION=${VERSION}" >> "${GITHUB_ENV}"
4343
44-
if [[ "${GITHUB_REF_NAME}" != "v${VERSION}" ]]; then
44+
if [[ "${GITHUB_REF_NAME}" != "${VERSION}" ]]; then
4545
echo "package version ${VERSION} does not match release tag ${GITHUB_REF_NAME}" >&2
4646
exit 1
4747
fi

0 commit comments

Comments
 (0)