From 020cb099e29117c059304c0af51dcf211a7d4fa5 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 21 Nov 2022 12:50:05 +0100 Subject: [PATCH] Quote params better. --- canary-release/action.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/canary-release/action.yml b/canary-release/action.yml index c92e2a7e..6fc73c07 100644 --- a/canary-release/action.yml +++ b/canary-release/action.yml @@ -84,10 +84,14 @@ runs: echo "::endgroup::" echo "::group::Uploading package" - anaconda --token ${{ inputs.anaconda-org-token }} upload \ - --force --register --no-progress \ - --user ${{ inputs.anaconda-org-channel }} \ - --label ${{ inputs.anaconda-org-label }} \ + anaconda + --token="${{ inputs.anaconda-org-token }}" \ + upload \ + --force \ + --register \ + --no-progress \ + --user="${{ inputs.anaconda-org-channel }}" \ + --label="${{ inputs.anaconda-org-label }}" \ ./pkgs/${{ inputs.subdir }}/${{ inputs.package-name }}-*.tar.bz2 echo "Uploaded the following files:" ls ./pkgs/${{ inputs.subdir }}/${{ inputs.package-name }}-*.tar.bz2 | cut -d/ -f3- | tr ' ' $'\n'