From b19e0f0b35c6c8bf06f45dff9f3a17a167c47004 Mon Sep 17 00:00:00 2001 From: stevenhsd <56357022+stevenhsd@users.noreply.github.com> Date: Thu, 2 Jul 2026 10:37:56 +0100 Subject: [PATCH 1/3] ci: attempt to fix automated upload of conda package --- .github/workflows/ci_conda_publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci_conda_publish.yml b/.github/workflows/ci_conda_publish.yml index 71ec462..7f2b594 100644 --- a/.github/workflows/ci_conda_publish.yml +++ b/.github/workflows/ci_conda_publish.yml @@ -84,6 +84,5 @@ jobs: ANACONDA_USER = ${{ secrets.ANACONDA_USER }} shell: bash -el {0} run: | - anaconda login --user "$ANACONDA_USER" + anaconda login --token "$ANACONDA_TOKEN" anaconda upload --user "$ANACONDA_USER" "$CONDA_ART" - # TODO - haven't been able to get the login working. Needs fixing From e6b17ce9a1786e4900211f663d8d23916afc2411 Mon Sep 17 00:00:00 2001 From: stevenhsd <56357022+stevenhsd@users.noreply.github.com> Date: Thu, 2 Jul 2026 11:50:41 +0100 Subject: [PATCH 2/3] ci: bump grayskull --- .github/workflows/ci_conda_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_conda_publish.yml b/.github/workflows/ci_conda_publish.yml index 7f2b594..0c80d82 100644 --- a/.github/workflows/ci_conda_publish.yml +++ b/.github/workflows/ci_conda_publish.yml @@ -18,7 +18,7 @@ jobs: - name: Install conda requirements shell: bash -el {0} run: | - conda install -c conda-forge conda-build grayskull=3.1.0 + conda install -c conda-forge conda-build grayskull=3.1.1 - name: Build conda metadata shell: bash -el {0} From f41336aec253c204c84e52eac1b4d050447323c5 Mon Sep 17 00:00:00 2001 From: stevenhsd <56357022+stevenhsd@users.noreply.github.com> Date: Thu, 2 Jul 2026 12:05:48 +0100 Subject: [PATCH 3/3] ci: tweak use of vars --- .github/workflows/ci_conda_publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_conda_publish.yml b/.github/workflows/ci_conda_publish.yml index 0c80d82..c9d2e11 100644 --- a/.github/workflows/ci_conda_publish.yml +++ b/.github/workflows/ci_conda_publish.yml @@ -80,8 +80,8 @@ jobs: - name: Upload Conda Artifact env: - ANACONDA_TOKEN = ${{ secrets.ANACONDA_TOKEN }} - ANACONDA_USER = ${{ secrets.ANACONDA_USER }} + ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} + ANACONDA_USER: ${{ secrets.ANACONDA_USER }} shell: bash -el {0} run: | anaconda login --token "$ANACONDA_TOKEN"