From b1cc9cb2958c30fb9eaad7abffaa84a359661034 Mon Sep 17 00:00:00 2001 From: Derek Slenk Date: Sun, 29 Jun 2025 18:00:13 -0400 Subject: [PATCH] Update AWS region to us-east-1 and clarify CloudFlare proxy - Changed aws-region from us-east-2 to us-east-1 for correct deployment - Updated S3 website URL to use us-east-1 endpoint - Added note about CloudFlare proxy for production serving --- .github/workflows/nextjs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nextjs.yml b/.github/workflows/nextjs.yml index af2c466..15444af 100644 --- a/.github/workflows/nextjs.yml +++ b/.github/workflows/nextjs.yml @@ -57,7 +57,7 @@ jobs: uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: ${{ secrets.CC_OIDC_ROLE }} - aws-region: us-east-2 + aws-region: us-east-1 - name: Deploy to S3 run: | @@ -66,4 +66,5 @@ jobs: - name: Output deployment URL run: | echo "🎉 Deployment successful!" - echo "Your site is available at: http://${{ secrets.S3_BUCKET_NAME }}.s3-website-us-east-2.amazonaws.com" + echo "S3 website URL: http://${{ secrets.S3_BUCKET_NAME }}.s3-website-us-east-1.amazonaws.com" + echo "Note: Site will be served through CloudFlare proxy for production"