oops

Ben Kunkle created

Change summary

.github/workflows/deploy_docs.yml                | 2 +-
tooling/xtask/src/tasks/workflows/deploy_docs.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

.github/workflows/deploy_docs.yml 🔗

@@ -77,7 +77,7 @@ jobs:
             echo "project_name=$PROJECT_NAME"
         } >> "$GITHUB_OUTPUT"
       env:
-        CHANNEL: inputs.channel
+        CHANNEL: ${{ inputs.channel }}
     - name: steps::checkout_repo
       uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
       with:

tooling/xtask/src/tasks/workflows/deploy_docs.rs 🔗

@@ -255,7 +255,7 @@ pub(crate) fn deploy_docs_job(
     checkout_ref_input: &WorkflowInput,
 ) -> NamedJob {
     docs_job(
-        channel_input.expr(),
+        channel_input.to_string(),
         Some(format!(
             "${{{{ {} != '' && {} || github.sha }}}}",
             checkout_ref_input.expr(),