Skip to content

feat: add build and push workflow #1

feat: add build and push workflow

feat: add build and push workflow #1

Workflow file for this run

name: Build and push docker image
on: push
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ghcr.io/worldcoin/gpu-iris-mpc:0.1.0
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max