diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index 82be73e..6583d06 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -35,6 +35,11 @@ jobs: sed -i "s|SUPABASE_ANON_KEY_VALUE|${{ secrets.SUPABASE_ANON_KEY }}|g" config.js npm run build + - name: Debug - List files in out directory + run: | + cd website + ls -R ./out + - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 with: @@ -42,6 +47,9 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: ap-south-1 + - name: Debug - Display AWS CLI version + run: aws --version + - name: Deploy to S3 run: | cd website