Skip to content

Add workflow for building Docker image on commit to main (#4) #6

Add workflow for building Docker image on commit to main (#4)

Add workflow for building Docker image on commit to main (#4) #6

Workflow file for this run

---
name: "Build"
on:
push:
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