From 8206695222da1dfeaabf58610a6c00566db5c977 Mon Sep 17 00:00:00 2001 From: cvanelteren Date: Thu, 29 Jan 2026 08:05:32 +1000 Subject: [PATCH 1/2] Skip micromamba post cleanup to avoid GHA deinit error --- .github/workflows/build-ultraplot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-ultraplot.yml b/.github/workflows/build-ultraplot.yml index 64ced1f3f..7edadc321 100644 --- a/.github/workflows/build-ultraplot.yml +++ b/.github/workflows/build-ultraplot.yml @@ -41,6 +41,7 @@ jobs: with: environment-file: ./environment.yml init-shell: bash + post-cleanup: none create-args: >- --verbose python=${{ inputs.python-version }} @@ -70,6 +71,7 @@ jobs: with: environment-file: ./environment.yml init-shell: bash + post-cleanup: none create-args: >- --verbose python=${{ inputs.python-version }} From 1b950b8a5a878636ee1142908db69076b12eb9f0 Mon Sep 17 00:00:00 2001 From: cvanelteren Date: Thu, 29 Jan 2026 08:19:57 +1000 Subject: [PATCH 2/2] Provide explicit condarc for micromamba --- .github/workflows/build-ultraplot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-ultraplot.yml b/.github/workflows/build-ultraplot.yml index 7edadc321..b157adf8e 100644 --- a/.github/workflows/build-ultraplot.yml +++ b/.github/workflows/build-ultraplot.yml @@ -41,6 +41,10 @@ jobs: with: environment-file: ./environment.yml init-shell: bash + condarc: | + channels: + - conda-forge + channel_priority: strict post-cleanup: none create-args: >- --verbose @@ -71,6 +75,10 @@ jobs: with: environment-file: ./environment.yml init-shell: bash + condarc: | + channels: + - conda-forge + channel_priority: strict post-cleanup: none create-args: >- --verbose