Skip to content

Commit

Permalink
Test docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus993 committed Oct 9, 2024
1 parent 9d512b8 commit ae37b91
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Docker build and push

on:
push:
branches:
- docker-compose

jobs:
docker-build-push:
name: Build docker
runs-on: ubuntu-latest

permissions:
contents: read
packages: write
pull-requests: write

steps:
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v1

- name: Build Docker image
run: |
make docker_build_aggregator
- name: Push Docker image
run: |
docker push ghcr.io/lambdaclass/aligned_layer/aggregator:v0.8.0

0 comments on commit ae37b91

Please sign in to comment.