From eca7a79dfb0fffea3a3e1d4e91aa6c209ff1402c Mon Sep 17 00:00:00 2001 From: Erick Bourgeois Date: Sun, 28 Dec 2025 19:54:14 -0500 Subject: [PATCH] Fix the env var name for CARGO_REGISTRY_TOKEN Signed-off-by: Erick Bourgeois --- rust/publish-crate/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/publish-crate/action.yaml b/rust/publish-crate/action.yaml index a05a139..3229066 100644 --- a/rust/publish-crate/action.yaml +++ b/rust/publish-crate/action.yaml @@ -45,7 +45,7 @@ runs: run: | # Use cargo login with token from environment variable # This is the recommended approach instead of --token flag - echo ${CARGO_REGISTRY_TOKE} | cargo login + echo ${CARGO_REGISTRY_TOKEN} | cargo login - name: Publish crate shell: bash