From e8913e01e7bc7d9dd7a16c9a0bd405378ac15acc Mon Sep 17 00:00:00 2001 From: Erick Bourgeois Date: Sun, 28 Dec 2025 17:53:46 -0500 Subject: [PATCH] Fix the publish job to echo the cargo token into login 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 9af7e85..a05a139 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 - cargo login + echo ${CARGO_REGISTRY_TOKE} | cargo login - name: Publish crate shell: bash