updated docker-compose to use latest images, patched osx binary build script, experimenting with artifact upload for binaries

This commit is contained in:
Ronald A. Richardson
2025-05-21 22:18:49 +08:00
parent fcb3694874
commit 92170c965e
3 changed files with 32 additions and 62 deletions

View File

@@ -46,11 +46,11 @@ fi
# 🔁 Trap to restore PHP when script exits
trap 'if [ "$IS_ASDF_MANAGED" = true ]; then
log "Restoring asdf-managed PHP version: $ORIGINAL_PHP_VERSION"
asdf set php "$ORIGINAL_PHP_VERSION"
asdf set php "$ORIGINAL_PHP_VERSION" || true
log "Reverted to PHP $(php -v | head -n 1)"
else
log "Unsetting asdf set to restore system PHP"
asdf set php system
asdf set php system || true
log "Reverted to PHP $(php -v | head -n 1)"
fi' EXIT