diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index 99448674d..c51e610f4 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -20,8 +20,6 @@ jobs: python-version: [ "3.10", "3.11", "3.12" ] steps: - - - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -55,18 +53,25 @@ jobs: build-args: | LOGPREP_VERSION=${{ inputs.build-version }} PYTHON_VERSION=${{ matrix.python-version }} - tags: "${{ steps.image-tag.outputs.tags }}, ghcr.io/fkie-cad/logprep:local" + tags: ${{ steps.image-tag.outputs.tags }} - - name: List Docker imagers + - name: Extract image ID from sha256 + id: imageid run: | - docker images --digests + python - <