From edaf6fef9475e2f12ac16de354b9aca01562cb9e Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Mon, 27 Jul 2026 14:07:43 -0400 Subject: [PATCH] fix(release): drop the dead OMP adapter verification step The step ran node tests/omp/omp-plugin.test.js, which has never existed in this repository. It was added by #2382 without the test file, so Verify Release failed on every tag and no release could publish. The OpenCode payload is already verified by tests/scripts/build-opencode.test.js in the preceding step, and the plugin and marketplace manifests by tests/plugin-manifest.test.js in Verify release metadata stays in sync. Co-Authored-By: Claude Claude-Session: https://claude.ai/code/session_0149VwNuynam6rvEfcMmiHHa --- .github/workflows/release.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2feeb0a59..a415b0e84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,9 +38,6 @@ jobs: - name: Verify OpenCode package payload run: node tests/scripts/build-opencode.test.js - - name: Verify OMP adapter payload - run: node tests/omp/omp-plugin.test.js - - name: Validate version tag run: | if ! [[ "${REF_NAME}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z.-]+)?$ ]]; then