From 4070d4ad637486e7b4fe8373baf9cb9860f220f0 Mon Sep 17 00:00:00 2001 From: Nic Cheneweth Date: Mon, 21 Oct 2024 15:56:57 -0500 Subject: [PATCH] [nc] fix build log filenaming Signed-off-by: Nic Cheneweth --- build/action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/action.yaml b/build/action.yaml index 8f50afb..0ea9092 100644 --- a/build/action.yaml +++ b/build/action.yaml @@ -53,7 +53,9 @@ runs: run: | #!/usr/bin/env bash set -eo pipefail - outfilename="${{ inputs.image }}:${{ inputs.tag }}_build_log.txt" + # don't use org name in log file name + image=${{ inputs.tag }} + outfilename="${{ inputs.image }}:${image#*/}_build_log.txt" docker build --progress=plain \ ${{ inputs.extra-build-args }} \