From d4a32991bd54acbf5bc630de902a442927052999 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Mon, 8 Sep 2025 10:29:32 +0200 Subject: [PATCH] Compile and bundle proof of claim. --- .github/workflows/build-circuits.yml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/build-circuits.yml b/.github/workflows/build-circuits.yml index 27cbb76..02890eb 100644 --- a/.github/workflows/build-circuits.yml +++ b/.github/workflows/build-circuits.yml @@ -157,6 +157,16 @@ jobs: os: ${{ env.OS }} arch: ${{ env.ARCH }} + - name: Compile and Bundle PoC + uses: ./.github/actions/compile-and-bundle + with: + circuit-name-display: "PoC" + circuit-name-binary: "poc" + circuit-path: "circom_circuits/Mantle/proof_of_claim.circom" + version: ${{ env.VERSION }} + os: ${{ env.OS }} + arch: ${{ env.ARCH }} + build-windows: name: Build Windows Binaries (Native) runs-on: windows-latest @@ -313,6 +323,16 @@ jobs: os: ${{ env.OS }} arch: ${{ env.ARCH }} + - name: Compile and Bundle PoC + uses: ./.github/actions/compile-and-bundle + with: + circuit-name-display: "PoC" + circuit-name-binary: "poc" + circuit-path: "circom_circuits/Mantle/proof_of_claim.circom" + version: ${{ env.VERSION }} + os: ${{ env.OS }} + arch: ${{ env.ARCH }} + build-macos: name: Build MacOS Binaries (Native) runs-on: macos-latest @@ -426,6 +446,16 @@ jobs: os: ${{ env.OS }} arch: ${{ env.ARCH }} + - name: Compile and Bundle PoC + uses: ./.github/actions/compile-and-bundle + with: + circuit-name-display: "PoC" + circuit-name-binary: "poc" + circuit-path: "circom_circuits/Mantle/proof_of_claim.circom" + version: ${{ env.VERSION }} + os: ${{ env.OS }} + arch: ${{ env.ARCH }} + publish-release: name: Create Release runs-on: ubuntu-latest