Skip to content

Commit 6ae0df8

Browse files
authored
fix: docker publishing (#851)
1 parent 5faf1b0 commit 6ae0df8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/docker/publish_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PW_VERSION="${TAG_NAME#v}"
1414

1515
RELEASE_CHANNEL="$1"
1616
if [[ "${RELEASE_CHANNEL}" == "stable" ]]; then
17-
if [[ ! "${PW_VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
17+
if [[ ! "${PW_VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
1818
echo "ERROR: cannot publish stable docker with Playwright version '${PW_VERSION}'"
1919
exit 1
2020
fi

0 commit comments

Comments
 (0)