From: Remi Gacogne Date: Thu, 5 Jun 2025 08:41:08 +0000 (+0200) Subject: documentation.yml: Fix missing `$`s spotted by Alexis (thanks!) X-Git-Tag: dnsdist-2.0.0-beta1~54^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe726b67b9dbe7c516c64475ec8643f3194393e9;p=thirdparty%2Fpdns.git documentation.yml: Fix missing `$`s spotted by Alexis (thanks!) Signed-off-by: Remi Gacogne --- diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 1e06703433..6af2789f29 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -214,8 +214,8 @@ jobs: [ -z "$SSH_KEY" ] && missing_secrets+=("WEB1_DOCS_SECRET") [ -z "$HOST_KEY" ] && missing_secrets+=("WEB1_HOSTKEY") [ -z "$DOCS_HOST" ] && missing_secrets+=("DOCS_HOST") - [ -z "AUTH_DOCS_DIR" ] && missing_secrets+=("AUTH_DOCS_DIR") - [ -z "REC_DOCS_DIR" ] && missing_secrets+=("REC_DOCS_DIR") + [ -z "$AUTH_DOCS_DIR" ] && missing_secrets+=("AUTH_DOCS_DIR") + [ -z "$REC_DOCS_DIR" ] && missing_secrets+=("REC_DOCS_DIR") if [ ${#missing_secrets[@]} -ne 0 ]; then echo "Error: The following secrets/variables are missing: ${missing_secrets[*]}" exit 1