Skip to content

Commit

Permalink
fix: do not use v{} tags in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperPaul123 committed Nov 1, 2024
1 parent 8d599b3 commit e461be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "PKG_NAME=${PKG_PREFIX}" >> "${GITHUB_ENV}"
echo "PKG_VERSION=${VERSION}" >> "${GITHUB_ENV}"
if [[ "${GITHUB_REF_NAME}" != "v${VERSION}" ]]; then
if [[ "${GITHUB_REF_NAME}" != "${VERSION}" ]]; then
echo "package version ${VERSION} does not match release tag ${GITHUB_REF_NAME}" >&2
exit 1
fi
Expand Down

0 comments on commit e461be5

Please sign in to comment.