From 62061390b9cc6ce95fd90da0dadaab2af6831b70 Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Mon, 13 Oct 2025 12:47:07 +0200 Subject: [PATCH] Fix order of actions in publish step --- .github/workflows/publish.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e72402c3..4cf0bbc2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,11 +11,11 @@ jobs: contents: read id-token: write # Required for OIDC token exchange steps: + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - name: Setup Rust uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c with: toolchain: nightly,stable - - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - uses: rust-lang/crates-io-auth-action@e919bc7605cde86df457cf5b93c5e103838bd879 id: auth - run: cargo publish diff --git a/Cargo.toml b/Cargo.toml index 0475db8a..d1ec809b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" description = "A protocol for standardizing communication between code editors and AI coding agents" repository = "https://github.com/agentclientprotocol/agent-client-protocol" homepage = "https://github.com/agentclientprotocol/agent-client-protocol" -documentation = "https://docs.rs/agent-client-protocol" +documentation = "https://docs.rs/agent-client-protocol-schema" readme = "README.md" keywords = ["agent", "client", "protocol", "ai", "editor"] categories = ["development-tools", "api-bindings"]