Skip to content

try to implement merkle tree as an async trait #9

try to implement merkle tree as an async trait

try to implement merkle tree as an async trait #9

Workflow file for this run

on: [push, pull_request]
name: Build container images
jobs:
build-container:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- context: "."
name: "kvpair"
- context: "./server/envoy"
name: "envoy"
- context: "./services/auth"
name: "auth"
steps:
- uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: "${{ matrix.context }}"
push: ${{ github.event_name != 'pull_request' }}
tags: "ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:latest"