Skip to content

Commit

Permalink
Adding github action
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed May 22, 2024
1 parent 085dfba commit 98276ed
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build-container

on: push

jobs:
build:
runs-on: ubuntu-latest
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
with:
context: .
file: ./Dockerfile
push: false
tags: eigenlayer-payment-updater:${{ github.sha }}

0 comments on commit 98276ed

Please sign in to comment.