1
0
mirror of synced 2026-08-05 15:06:54 +00:00

fix: docker publishing (#851)

This commit is contained in:
Yury Semikhatsky
2022-03-14 20:22:53 -07:00
committed by GitHub
parent 5faf1b028a
commit 6ae0df89fa
+1 -1
View File
@@ -14,7 +14,7 @@ PW_VERSION="${TAG_NAME#v}"
RELEASE_CHANNEL="$1"
if [[ "${RELEASE_CHANNEL}" == "stable" ]]; then
if [[ ! "${PW_VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
if [[ ! "${PW_VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "ERROR: cannot publish stable docker with Playwright version '${PW_VERSION}'"
exit 1
fi