From f1b09b91a972dc13449f967ca0d6ad463d06b2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Thu, 19 Dec 2024 10:37:43 +0100 Subject: [PATCH] Makefile/release_artifacts: print the archive path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Packit needs expects the archive path to be printed when specifying a custom action to build the archive. See [0]. [0] https://packit.dev/docs/configuration/actions#create-archive Signed-off-by: Tomáš Hozza --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8669590..5466319 100644 --- a/Makefile +++ b/Makefile @@ -170,4 +170,6 @@ RPM_TARBALL_FILENAME=$(notdir $(RPM_TARBALL)) release_artifacts: $(RPM_TARBALL) mkdir -p release_artifacts cp $< release_artifacts/ + # Print the artifact path for Packit + echo "release_artifacts/$(shell basename $<)"