Fix YAML syntax error in amplify.yml
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
65601e5ad6
commit
21ac70c502
1 changed files with 2 additions and 2 deletions
|
@ -8,9 +8,9 @@ frontend:
|
||||||
commands:
|
commands:
|
||||||
- echo "Build started on `date`"
|
- echo "Build started on `date`"
|
||||||
- echo "Configuring environment variables..."
|
- 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 "YOUTUBE_API_KEY=${YOUTUBE_API_KEY}" > .env.production
|
||||||
- echo "Contents of .env.production:"
|
- echo "Contents of .env.production file"
|
||||||
- cat .env.production
|
- cat .env.production
|
||||||
- npm run build
|
- npm run build
|
||||||
artifacts:
|
artifacts:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue