From 9793709af40c2c7b3d66ebc62876d749ca41a17c Mon Sep 17 00:00:00 2001 From: dtrai2 Date: Tue, 17 Dec 2024 15:04:05 +0100 Subject: [PATCH] fix inputs --- .github/workflows/container-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index bde6d518a..6a247b88e 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -27,7 +27,7 @@ jobs: import os image = "ghcr.io/fkie-cad/logprep" version = "${{ matrix.python-version }}" - tags = "${{ input.tags }}".split(",") + tags = "${{ inputs.tags }}".split(",") full_image = [f"{image}:py{version}-{tag.strip()}" for tag in tags] os.environ["GITHUB_OUTPUT"] = f"tags={','.join(full_image)}" EOF