Skip to content

Commit

Permalink
[nc] fix build log filenaming
Browse files Browse the repository at this point in the history
Signed-off-by: Nic Cheneweth <[email protected]>
  • Loading branch information
ncheneweth committed Oct 21, 2024
1 parent 62691eb commit 4070d4a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }} \
Expand Down

0 comments on commit 4070d4a

Please sign in to comment.