From 8380fbb56dd989ca2129f558538fbacbcf388998 Mon Sep 17 00:00:00 2001 From: David Turner Date: Tue, 26 Nov 2024 00:04:19 -0500 Subject: [PATCH] Remove quotes from anaconda upload command It seems I forgot to remove quotes from the upload command. I think this should do it. --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index aea228b7..718c4c26 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -196,5 +196,5 @@ jobs: - name: Upload to Anaconda run: | export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }} - find conda-packages -type f -name "*.tar.bz2" -exec "anaconda upload {}" \; + find conda-packages -type f -name "*.tar.bz2" -exec anaconda upload {} \;