diff --git a/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs b/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs index c7926ed77898e5b06586fe6a4181b074b7955179..443232127e3210b3ac903a1f00f6229f18de2ddc 100644 --- a/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs +++ b/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs @@ -92,7 +92,7 @@ fn rollout_workflows_to_extension(fetch_repos_job: &NamedJob) -> NamedJob { fn get_short_sha() -> (Step, StepOutput) { let step = named::bash(indoc! {r#" - echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + echo "sha_short=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" "#}) .id("short-sha") .working_directory("zed");