From e0a948583ec17642c2a576bc89dd34551fb69307 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 6 May 2026 03:33:24 +0000 Subject: [PATCH 1/2] Initial plan From 0595ad6b1808d996065705fb79c20d781fea3340 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 6 May 2026 03:57:46 +0000 Subject: [PATCH 2/2] fix: forward init_flags to foc-devnet init and update default filecoin-services to v1.2.0 Agent-Logs-Url: https://github.com/FilOzone/foc-devnet/sessions/15ee3dbb-01ad-43ee-b68e-139b526a6c9f Co-authored-by: BigLep <85411+BigLep@users.noreply.github.com> --- .github/workflows/ci_run.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_run.yml b/.github/workflows/ci_run.yml index bf29b7c..32fcfc9 100644 --- a/.github/workflows/ci_run.yml +++ b/.github/workflows/ci_run.yml @@ -132,8 +132,9 @@ jobs: # Get version output VERSION_OUTPUT=$(./foc-devnet version 2>&1) - # Compute CODE_HASH from all default:code: lines (Lotus/Curio versions) - CODE_HASH=$(echo "$VERSION_OUTPUT" | grep 'default:code:' | sha256sum | cut -d' ' -f1) + # Compute CODE_HASH from Lotus/Curio versions only (filecoin-services contains contracts/scripts + # that are compiled by Foundry at deploy time, not compiled into Lotus/Curio binaries) + CODE_HASH=$(echo "$VERSION_OUTPUT" | grep -E 'default:code:(lotus|curio)' | sha256sum | cut -d' ' -f1) echo "code-hash=$CODE_HASH" >> $GITHUB_OUTPUT echo "CODE_HASH: $CODE_HASH"