From b1534d7f33176f6cf1add5ef02d50139383d65f2 Mon Sep 17 00:00:00 2001 From: naveen28204280 Date: Wed, 30 Jul 2025 11:56:16 +0530 Subject: [PATCH 1/2] fix: Issue#123 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ba255c..e8a6d0c 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,6 @@ tag: .PHONY: release release: mkdir -p releases - git -c tar.tar.gz.command='gzip -cn' archive --prefix=${PROGNM}-${TAG}/ -o releases/${PROGNM}-${TAG}.tar.gz ${TAG} + git archive --format=tar.gz --prefix=${PROGNM}-${TAG}/ -o releases/${PROGNM}-${TAG}.tar.gz ${TAG} gpg --detach-sign -o releases/${PROGNM}-${TAG}.tar.gz.sig releases/${PROGNM}-${TAG}.tar.gz gh release create -t "Release: ${TAG}" ${TAG} releases/${PROGNM}-${TAG}.tar.gz.sig releases/${PROGNM}-${TAG}.tar.gz From d892214b36432b31fa3250fd68acf60679c4adc9 Mon Sep 17 00:00:00 2001 From: naveen28204280 Date: Fri, 1 Aug 2025 13:46:53 +0530 Subject: [PATCH 2/2] fix: added timestamps to the tarball --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e8a6d0c..e90f18a 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,6 @@ tag: .PHONY: release release: mkdir -p releases - git archive --format=tar.gz --prefix=${PROGNM}-${TAG}/ -o releases/${PROGNM}-${TAG}.tar.gz ${TAG} + git archive --format=tar.gz --prefix=${PROGNM}-${TAG}/ | gzip -cn > releases/${PROGNM}-${TAG}.tar.gz ${TAG} gpg --detach-sign -o releases/${PROGNM}-${TAG}.tar.gz.sig releases/${PROGNM}-${TAG}.tar.gz gh release create -t "Release: ${TAG}" ${TAG} releases/${PROGNM}-${TAG}.tar.gz.sig releases/${PROGNM}-${TAG}.tar.gz