diff --git a/scripts/package.sh b/scripts/package.sh index b13d609..ec0faaa 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -11,6 +11,7 @@ PHPS="${PHPS:-"7.4 8.0 8.1 8.2 8.3 8.4 8.5"}" BASE_MATRIX=( "debian:13|trixie" "debian:12|bookworm" + "ubuntu:26.04|resolute" "ubuntu:24.04|noble" "ubuntu:22.04|jammy" ) diff --git a/scripts/publish.sh b/scripts/publish.sh index ad2c4b1..7e29969 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -4,7 +4,7 @@ set -eoux pipefail OUT_DIR="${OUT_DIR:-"$(cd "$(dirname "$0")/.."; pwd)/build"}" -for CODENAME in trixie bookworm noble jammy; do +for CODENAME in trixie bookworm resolute noble jammy; do # feed all .deb for that codename into the repo if compgen -G "${OUT_DIR}/${CODENAME}/php*/*.deb" >/dev/null 2>&1; then find "${OUT_DIR}/${CODENAME}" -name '*.deb' -print0 \