From d6771af454fd02e90da66fa495e1f2581145efc3 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Thu, 29 Aug 2024 11:37:22 -0700 Subject: [PATCH 1/2] Wrap `anaconda upload` line --- .github/workflows/build_conda_and_pypi.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_conda_and_pypi.yaml b/.github/workflows/build_conda_and_pypi.yaml index a26e674..47cd51e 100644 --- a/.github/workflows/build_conda_and_pypi.yaml +++ b/.github/workflows/build_conda_and_pypi.yaml @@ -31,7 +31,9 @@ jobs: if [[ "${GITHUB_REF_TYPE}" == "tag" ]]; then RAPIDS_CONDA_TOKEN=${{ secrets.CONDA_RAPIDSAI_TOKEN }} fi - anaconda -t "${RAPIDS_CONDA_TOKEN}" upload --skip-existing --no-progress /tmp/frigate-bld/noarch/*.tar.bz2 + anaconda -t "${RAPIDS_CONDA_TOKEN}" upload --skip-existing --no-progress \ + /tmp/frigate-bld/noarch/*.tar.bz2 \ + ; wheel-build: runs-on: ubuntu-latest steps: From a8f0981162469bd4455056a6ad3a129ba8cc22d5 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Thu, 29 Aug 2024 11:37:37 -0700 Subject: [PATCH 2/2] Add `.conda` package glob to `anaconda upload` --- .github/workflows/build_conda_and_pypi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_conda_and_pypi.yaml b/.github/workflows/build_conda_and_pypi.yaml index 47cd51e..d748a2d 100644 --- a/.github/workflows/build_conda_and_pypi.yaml +++ b/.github/workflows/build_conda_and_pypi.yaml @@ -32,6 +32,7 @@ jobs: RAPIDS_CONDA_TOKEN=${{ secrets.CONDA_RAPIDSAI_TOKEN }} fi anaconda -t "${RAPIDS_CONDA_TOKEN}" upload --skip-existing --no-progress \ + /tmp/frigate-bld/noarch/*.conda \ /tmp/frigate-bld/noarch/*.tar.bz2 \ ; wheel-build: