From c608a1caed3e005c6a774b17243ac8623e63c74c Mon Sep 17 00:00:00 2001 From: Thomas Casteleyn Date: Wed, 30 Oct 2024 17:28:15 +0100 Subject: [PATCH] feat(build): Push RHEL 9 package (#294) --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 652e564a..1d0b42e3 100644 --- a/Makefile +++ b/Makefile @@ -86,6 +86,7 @@ packagecloud-push-rpm: $(wildcard $(NAME)-$(RPM_VERSION)-1.*.rpm) for pkg in $^; do package_cloud push $(REPO)/el/7 $${pkg} || true package_cloud push $(REPO)/el/8 $${pkg} || true + package_cloud push $(REPO)/el/9 $${pkg} || true done .ONESHELL: