Skip to content

Push Images to ghcr #28

Push Images to ghcr

Push Images to ghcr #28

Workflow file for this run

name: Push Images to ghcr
on:
push:
branches:
- eigenda-develop
tags:
- "op-*/v*-eigenda.*" # Will match tags like op-node/v1.11.1-eigenda.1, op-batcher/v1.12.3-eigenda.2, etc.
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup multi-arch docker builder
run: make docker-builder
- run: make layr-labs-docker-push