Skip to content

Commit 4ee28db

Browse files
committed
Fix quotes in helm check
1 parent e0fcc1f commit 4ee28db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/_helm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
VERSION: "${{ github.ref_name }}"
3030
run: |
3131
if [[ "${VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+((-alpha|-beta|-rc)\.[0-9]+)?$ ]]; then
32-
echo "Valid version format: `${VERSION}`"
32+
echo "Valid version format: '${VERSION}'"
3333
else
34-
echo "Invalid version: `${VERSION}`. Expected: `X.Y.Z` or `X.Y.Z-beta.1` or `X.Y.Z-alpha.1`"
34+
echo "Invalid version: '${VERSION}'. Expected: 'X.Y.Z' or 'X.Y.Z-beta.1' or 'X.Y.Z-alpha.1'"
3535
exit 1
3636
fi
3737

0 commit comments

Comments
 (0)