Add build args #1

Merged
jamie merged 9 commits from build-args into main 2025-03-03 19:39:27 +00:00
Showing only changes of commit 5e7a26d64f - Show all commits

View File

@ -41,6 +41,7 @@ jobs:
run: | run: |
BUILD_ARGS="" BUILD_ARGS=""
echo "${{ inputs.build-args }}" | while IFS= read -r line; do echo "${{ inputs.build-args }}" | while IFS= read -r line; do
echo "LINE CONTENT: $line"
if [ -n "$line" ]; then if [ -n "$line" ]; then
BUILD_ARGS="$BUILD_ARGS --build-arg $line" BUILD_ARGS="$BUILD_ARGS --build-arg $line"
fi fi