Skip to content

Commit

Permalink
PM-920 - initial workflow for building stateless verifier docker
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-iohk committed Jan 8, 2024
1 parent 59f1cca commit 0fed9c8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build_stateless_verifier_docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Stateless Verifier Docker Image

on:
workflow_dispatch:
inputs:
mina_branch:
description: 'Branch of MinaProtocol/mina to checkout'
required: true
default: 'sventimir/stateless-verification-tool'

env:
MINA_BRANCH: ${{ github.event.inputs.mina_branch }}

jobs:
build:
runs-on: minafoundation-default-runners

steps:
- name: Checkout Mina
uses: actions/checkout@v2
with:
repository: MinaProtocol/mina
ref: ${{ env.MINA_BRANCH }}

- name: Build and Push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: dockerfiles/Dockerfile-delegation-stateless-verifier
build-args: MINA_BRANCH=${{ env.MINA_BRANCH }}
tags: user/delegation-verify:latest
push: false

0 comments on commit 0fed9c8

Please sign in to comment.