From 21ac70c502a8988e1c848d6a640b33706364389b Mon Sep 17 00:00:00 2001 From: Derek Slenk Date: Fri, 27 Jun 2025 15:42:54 -0400 Subject: [PATCH] Fix YAML syntax error in amplify.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove colon from echo command that was causing YAML parsing error - Commands should now execute properly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- amplify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amplify.yml b/amplify.yml index cdb93e8..c1facd0 100644 --- a/amplify.yml +++ b/amplify.yml @@ -8,9 +8,9 @@ frontend: commands: - echo "Build started on `date`" - echo "Configuring environment variables..." - - echo "YOUTUBE_API_KEY value: ${YOUTUBE_API_KEY}" + - echo "YOUTUBE_API_KEY value is ${YOUTUBE_API_KEY}" - echo "YOUTUBE_API_KEY=${YOUTUBE_API_KEY}" > .env.production - - echo "Contents of .env.production:" + - echo "Contents of .env.production file" - cat .env.production - npm run build artifacts: