ci: fix CNAME validations for ACME records

This commit is contained in:
MaskDuck
2024-09-08 12:52:42 +07:00
committed by GitHub
parent d673191002
commit b3b656e05f
+1 -1
View File
@@ -17,7 +17,7 @@ const isValidURL = and([R.is(String), testRegex(/^https?:\/\//gi)]);
const isValidDomain = and([
R.is(String),
testRegex(/^(([a-z0-9-]+)\.)+[a-z]+$/gi),
testRegex(/^(([a-z0-9-_]+)\.)+[a-z]+$/gi),
]);
const validateCnameRecord = (type) =>