From 83fefc1b87c68c6e42f3ad3dad2d71a070730de2 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sun, 19 Oct 2025 07:23:19 -0400 Subject: [PATCH] .env formatting. --- .gitea/workflows/auto-pr-tofu-plan.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/auto-pr-tofu-plan.yml b/.gitea/workflows/auto-pr-tofu-plan.yml index d290669..a78f6c1 100644 --- a/.gitea/workflows/auto-pr-tofu-plan.yml +++ b/.gitea/workflows/auto-pr-tofu-plan.yml @@ -86,6 +86,20 @@ jobs: fi done < cloudflare/.env + echo "๐Ÿงน Stripping extra quotes from .env values..." + # Remove any single or double quotes from the entire file + sed -i "s/[\"']//g" cloudflare/.env + + echo "โœ… Cleaned .env:" + + echo "๐Ÿ”ง Loading environment..." + set -a + source cloudflare/.env + set +a + + echo "AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION}" + echo "AWS_S3_ENDPOINT=${AWS_S3_ENDPOINT}" + - name: Check .env file presence run: | ls -al cloudflare/.env