Skip to content

Commit

Permalink
Build and push to ecr
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed May 22, 2024
1 parent 98276ed commit ba55e89
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,30 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker setup
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
context: .
file: ./Dockerfile
push: false
tags: eigenlayer-payment-updater:${{ github.sha }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build, tag, and push docker image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: ${{ github.event.repository.name }}
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
## - name: Docker setup
## uses: docker/setup-buildx-action@v3
## - name: Build and push - development
## uses: docker/build-push-action@v5
## if: github.ref != 'refs/heads/master'
## with:
## context: .
## file: ./Dockerfile
## push: false
## tags: eigenlayer-payment-updater:${{ github.sha }}

0 comments on commit ba55e89

Please sign in to comment.