From bfc98b4b547ba6884276af2ec56154423aa08e17 Mon Sep 17 00:00:00 2001 From: Till Korten Date: Mon, 13 May 2024 23:14:08 +0200 Subject: [PATCH] only use the first tag as bild context (#193) ... in case multiple tags are generated fixes error in github action for releases --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b0bd5074..84ab5baa 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -105,7 +105,7 @@ jobs: labels: ${{ steps.meta.outputs.labels }} #cache-from: type=registry,ref=ghcr.io/${{ github.repository }} build-contexts: | - rapids-singlecell-deps=docker-image://${{ steps.meta-base.outputs.tags }} + rapids-singlecell-deps=docker-image://${{ fromJSON(steps.meta-base.outputs.json).tags[0] }} - name: Generate artifact attestation for main image if: github.event_name == 'release'