From 78aaef9a0b6f106e648367b18b46b48d885f9213 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Fri, 15 Apr 2022 09:17:30 -0300 Subject: [PATCH] release: automate upload of pre-release tarballs The tarballs were requested by some distro-packagers, and this automation will hopefully reduce the number of errors from the current manual process. --- Makefile.local | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.local b/Makefile.local index bbc464d2..d8bbf3e1 100644 --- a/Makefile.local +++ b/Makefile.local @@ -93,6 +93,10 @@ pre-release: pristine-tar commit $(DEB_TAR_FILE) $(UPSTREAM_TAG) mkdir -p releases mv $(TAR_FILE) $(DEB_TAR_FILE) $(SHA256_FILE) $(DETACHED_SIG_FILE) releases +ifeq ($(REALLY_UPLOAD),yes) + git push origin $(UPSTREAM_TAG) release pristine-tar + cd releases && scp $(TAR_FILE) $(SHA256_FILE) $(DETACHED_SIG_FILE) $(RELEASE_HOST):$(RELEASE_DIR) +endif .PHONY: debian-snapshot debian-snapshot: -- 2.43.0