Skip to content

Commit

Permalink
Quote params better.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Nov 21, 2022
1 parent 2c75e35 commit 020cb09
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions canary-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 020cb09

Please sign in to comment.