From 7447e61dbc49417cd2588f113e1e2eb6330dbc4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Tue, 4 Jun 2024 14:37:33 +0200 Subject: [PATCH] chore: fix docker workflow variable computation --- .github/workflows/docker.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index fb541c7318..2759a10bae 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -125,6 +125,14 @@ jobs: packages: python3 python3-venv python-is-python3 python3-pip nodejs npm curl zip unzip python-libs: kestra steps: + # Vars + - name: Set image name + id: vars + run: | + TAG=${GITHUB_REF#refs/*/} + echo "tag=${TAG}" >> $GITHUB_OUTPUT + echo "plugins=${{ matrix.image.plugins }}" >> $GITHUB_OUTPUT + # Download release - name: Download release uses: robinraju/release-downloader@v1.10 @@ -137,14 +145,6 @@ jobs: run: | cp build/executable/* docker/app/kestra && chmod +x docker/app/kestra - # Vars - - name: Set image name - id: vars - run: | - TAG=${GITHUB_REF#refs/*/} - echo "tag=${TAG}" >> $GITHUB_OUTPUT - echo "plugins=${{ matrix.image.plugins }}" >> $GITHUB_OUTPUT - # Docker setup - name: Set up QEMU uses: docker/setup-qemu-action@v3