From 5d883f74d5f2cf098d1bc23f3608c7ae14875875 Mon Sep 17 00:00:00 2001 From: Asgeir Frimannsson Date: Thu, 16 Jul 2026 20:49:22 +0800 Subject: [PATCH] Register bowrain 1.1.0 windows platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v1.1.0 release ships signed kapi-bowrain windows zips (kapi-bowrain_1.1.0_windows_{amd64,arm64}.zip + sigstore bundles, same release.yml@refs/tags/v1.1.0 identity as the registered platforms), but the registry entry only listed darwin/linux — so `kapi plugins install bowrain` failed on Windows with "no version ... for platform windows/amd64". Surfaced by setup-kapi's CI once the action started installing the plugin by default (neokapi/setup-kapi#2). sha256 values are from the release's checksums.txt; the cert identity was read from the actual Fulcio certificate in the windows zip's sigstore bundle. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01NBoxTTZe69Nyssa6QSMxFK --- manifest-plugins.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/manifest-plugins.json b/manifest-plugins.json index 99358d7..5cfd909 100644 --- a/manifest-plugins.json +++ b/manifest-plugins.json @@ -265,6 +265,20 @@ "signature": "https://github.com/neokapi/neokapi/releases/download/v1.1.0/kapi-bowrain_1.1.0_linux_arm64.tar.gz.sigstore.json", "cert_identity": "https://github.com/neokapi/neokapi/.github/workflows/release.yml@refs/tags/v1.1.0", "cert_oidc_issuer": "https://token.actions.githubusercontent.com" + }, + "windows/amd64": { + "url": "https://github.com/neokapi/neokapi/releases/download/v1.1.0/kapi-bowrain_1.1.0_windows_amd64.zip", + "sha256": "7600b41e7964912b81495a79cb7844a7a3b120c73d0b432372c0746a0d5f9c85", + "signature": "https://github.com/neokapi/neokapi/releases/download/v1.1.0/kapi-bowrain_1.1.0_windows_amd64.zip.sigstore.json", + "cert_identity": "https://github.com/neokapi/neokapi/.github/workflows/release.yml@refs/tags/v1.1.0", + "cert_oidc_issuer": "https://token.actions.githubusercontent.com" + }, + "windows/arm64": { + "url": "https://github.com/neokapi/neokapi/releases/download/v1.1.0/kapi-bowrain_1.1.0_windows_arm64.zip", + "sha256": "abd65cd600d74dcb2d891e9e5a5d226ccd368ab45da4ab576a5a369c46d1b2d4", + "signature": "https://github.com/neokapi/neokapi/releases/download/v1.1.0/kapi-bowrain_1.1.0_windows_arm64.zip.sigstore.json", + "cert_identity": "https://github.com/neokapi/neokapi/.github/workflows/release.yml@refs/tags/v1.1.0", + "cert_oidc_issuer": "https://token.actions.githubusercontent.com" } } },