Skip to content

Commit

Permalink
chore: Implement continuous integration build for registry container (#…
Browse files Browse the repository at this point in the history
…55)

closes #54
  • Loading branch information
jac18281828 authored Sep 15, 2023
1 parent bce3a25 commit b2452c9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/docker-image-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build Image CI

on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- "*"

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build
uses: docker/build-push-action@v3
with:
context: packages/did-eth-registry
platforms: linux/amd64
push: false

0 comments on commit b2452c9

Please sign in to comment.