fix(ci): add --tmp /tmp to prepare-iso to avoid permission denied

The proxmox-auto-install-assistant defaults --tmp to the source ISO's
directory (/opt/pve-isos/), which the runner user can't write to.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Clint Branham
2026-03-18 16:19:56 -05:00
parent 08286303ee
commit 26f5c0558c
@@ -28,10 +28,12 @@ echo " Answer file: $ANSWER_FILE"
echo " First boot: ${FIRST_BOOT:-none}"
echo " Output: $OUTPUT_ISO"
# Use /tmp for staging to avoid permission issues with the source ISO directory
proxmox-auto-install-assistant prepare-iso \
--fetch-from iso \
--answer-file "$ANSWER_FILE" \
"${FIRST_BOOT_ARGS[@]}" \
--tmp /tmp \
--output "$OUTPUT_ISO" \
"$BASE_ISO"