From 7ca550f1d8a4ac0ff3c7a0937cc0d0014be224b5 Mon Sep 17 00:00:00 2001 From: dtrai2 Date: Tue, 17 Dec 2024 14:44:42 +0100 Subject: [PATCH] debug tags --- .github/workflows/container-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index 3eaa72c70..e418a5e34 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -34,11 +34,11 @@ jobs: - name: Create Image Tags id: image-tag run: | - python -c "print(', '.join([f'ghcr.io/fkie-cad/logprep:py${{ matrix.python-version }}-{tag.strip()}' for tag in '${{ inputs.tags }}'.split(',')]))" >> $GITHUB_OUTPUT + python -c "print("tags", ', '.join([f'ghcr.io/fkie-cad/logprep:py${{ matrix.python-version }}-{tag.strip()}' for tag in '${{ inputs.tags }}'.split(',')]), sep="")" >> $GITHUB_OUTPUT - name: Debug Image Tag run: | - echo "${{ steps.image-tag.outputs.stdout }}" + echo "${{ steps.image-tag.outputs.tags }}" - name: Build image and export to Docker uses: docker/build-push-action@v6