Sherwani/addedterraform code #10
Workflow file for this run
This file contains 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
name: Build and Push Docker Image to AWS ECR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-push: | |
name: Build and Push Docker Image | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: --max-old-space-size=8182 | |
AWS_REGION: us-east-1 # Change this to the AWS region where your ECR repository is located | |
ECR_REPOSITORY: cf_analysis_agent # Replace this with your ECR repository name | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Create .env File | |
run: | | |
cd dodao-ai-agents/crowd-fund-analysis | |
pwd | |
cat <<EOF > cf_analysis_agent/.env | |
OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} | |
SCRAPINGANT_API_KEY=${{ secrets.SCRAPINGANT_API_KEY }} | |
SERPER_API_KEY=${{ secrets.SERPER_API_KEY }} | |
SCRAPIN_API_KEY=${{ secrets.SCRAPIN_API_KEY }} | |
GOOGLE_CSE_ID=${{ secrets.GOOGLE_CSE_ID }} | |
GOOGLE_API_KEY=${{ secrets.GOOGLE_API_KEY }} | |
EOF | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: crowd-fund-analysis | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
cd dodao-ai-agents/crowd-fund-analysis | |
pwd | |
aws sts get-caller-identity | |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:latest | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest | |
# - name: Build Docker Image | |
# working-directory: dodao-ai-agents/crowd-fund-analysis | |
# run: | | |
# docker build -t cf_analysis_agent:latest . | |
# | |
# - name: Tag Docker Image | |
# working-directory: dodao-ai-agents/crowd-fund-analysis | |
# run: | | |
# IMAGE_URI=${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.us-east-1.amazonaws.com/cf_analysis_agent:latest | |
# docker tag cf_analysis_agent:latest $IMAGE_URI | |
# echo "IMAGE_URI=$IMAGE_URI" >> $GITHUB_ENV | |
# | |
# - name: Push Docker Image to ECR | |
# working-directory: dodao-ai-agents/crowd-fund-analysis | |
# run: | | |
# docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.us-east-1.amazonaws.com/cf_analysis_agent:latest |