Add workflow for building Docker image on commit to main #4
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" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: "Build Docker image and push to Dockerhub" | |
runs-on: ubuntu-latest | |
env: | |
AWS_REGION: eu-west-1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: arn:aws:iam::118330671040:role/duneapi-ci | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- env: | |
GITHUB_TOKEN: ${{ secrets.DUNE_ENG_ACCESS_TOKEN }} | |
ECR_REGISTRY: public.ecr.aws/duneanalytics | |
ECR_REPOSITORY: blockchain-ingester | |
run: | | |
make image-build | |
make image-push |