Merge pull request #87 from Perry2004/feat/load-pexels-url-from-env-var #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Build and push the script image to ECR, which will be used by Lambda functions. | |
| name: Build Container-Based Lambda Image and Push to ECR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - scripts/** | |
| workflow_dispatch: | |
| jobs: | |
| build-and-push-lambda-to-ecr: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.AWS_IAM_ROLE_ARN }} | |
| aws-region: ${{ vars.AWS_REGION }} | |
| - name: Log in to Amazon ECR | |
| id: login-ecr | |
| uses: aws-actions/amazon-ecr-login@v2 | |
| - name: Build, tag, and push image to Amazon ECR | |
| id: build-image | |
| env: | |
| ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
| ECR_REPOSITORY: ${{ vars.ECR_REPOSITORY_LAMBDA }} | |
| AWS_S3_BUCKET_NAME: ${{ vars.AWS_S3_BUCKET }} | |
| CLOUDFRONT_DISTRIBUTION_ID: ${{ vars.CLOUDFRONT_DISTRIBUTION_ID }} | |
| run: | | |
| # Build the Docker image from the 'scripts' directory. | |
| # This assumes your Dockerfile is located in 'scripts/Dockerfile'. | |
| docker buildx build --platform linux/amd64 --provenance=false -f ./scripts/Dockerfile.script --build-arg AWS_S3_BUCKET_NAME=${AWS_S3_BUCKET_NAME} --build-arg CLOUDFRONT_DISTRIBUTION_ID=${CLOUDFRONT_DISTRIBUTION_ID} -t $ECR_REGISTRY/$ECR_REPOSITORY:latest ./scripts | |
| # Push the built image to ECR | |
| docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest | |
| # Output the full image URI for use in subsequent steps | |
| echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:latest" >> $GITHUB_OUTPUT | |
| - name: "Trigger Terraform Cloud Run" | |
| run: | | |
| WORKSPACE_ID="${{ vars.TFC_WORKSPACE_ID_PWP_LAMBDA }}" | |
| cat > payload.json <<EOF | |
| { | |
| "data": { | |
| "attributes": { | |
| "message": "Run triggered from PWP lambda update by commit ${{ github.sha }}" | |
| }, | |
| "type": "runs", | |
| "relationships": { | |
| "workspace": { | |
| "data": { | |
| "type": "workspaces", | |
| "id": "$WORKSPACE_ID" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| EOF | |
| curl --fail \ | |
| --header "Authorization: Bearer ${{ secrets.TFC_API_TOKEN }}" \ | |
| --header "Content-Type: application/vnd.api+json" \ | |
| --request POST \ | |
| --data @payload.json \ | |
| https://app.terraform.io/api/v2/runs | |
| env: | |
| TF_API_TOKEN: ${{ secrets.TFC_API_TOKEN }} | |
| GITHUB_SHA: ${{ github.sha }} |