From 811b4c4bc3b131e3af76b972896578eeef395974 Mon Sep 17 00:00:00 2001 From: kopackiw <26244440+kopackiw@users.noreply.github.com> Date: Thu, 10 Nov 2022 20:08:24 +0100 Subject: [PATCH] fix: wrap assignment with quotes --- tools/release-operator/src/github.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/release-operator/src/github.rs b/tools/release-operator/src/github.rs index 8c078ab59..7d8dbcbb2 100644 --- a/tools/release-operator/src/github.rs +++ b/tools/release-operator/src/github.rs @@ -71,6 +71,6 @@ impl Actions { // Set an "output" in GitHub Actions pub fn set_output(key: Outputs, value: &str) { log::debug!("setting output name={key} value={value}"); - println!("{key}={value} >> $GITHUB_OUTPUT"); + println!("\"{key}={value}\" >> $GITHUB_OUTPUT"); } }