Makefile/release_artifacts: print the archive path

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 <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2024-12-19 10:37:43 +01:00 committed by Simon de Vlieger
parent 50c79f154d
commit f1b09b91a9

View file

@ -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 $<)"