From 53e7cc45e941e33bdb027d21e784fa0883922cc4 Mon Sep 17 00:00:00 2001
From: Philipp Stadler <hello@phstadler.com>
Date: Mon, 15 Jul 2024 16:35:27 +0200
Subject: [PATCH] chore: enable compression in release tarball

---
 make/dist.mk | 2 +-
 package.json | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/make/dist.mk b/make/dist.mk
index ba7f7a2..74d6557 100644
--- a/make/dist.mk
+++ b/make/dist.mk
@@ -21,4 +21,4 @@ $(RELEASE_CONTENT_ARTIFACTS): $(RELEASE_DIR)/%: $(BUILD_PREFIX)%
 
 $(RELEASE_TAR): $(RELEASE_INCLUDE_SRC) $(RELEASE_INCLUDE_ARTIFACTS)
 # directory switch places templates dir into root instead of artifacts/templates
-	tar -cf $@ $(RELEASE_INCLUDE_SRC) $(and $(BUILD_PREFIX),--directory=$(BUILD_PREFIX)) $(patsubst $(BUILD_PREFIX)%,%,$(RELEASE_INCLUDE_ARTIFACTS))
+	tar -czf $@ $(RELEASE_INCLUDE_SRC) $(and $(BUILD_PREFIX),--directory=$(BUILD_PREFIX)) $(patsubst $(BUILD_PREFIX)%,%,$(RELEASE_INCLUDE_ARTIFACTS))
diff --git a/package.json b/package.json
index c556cfc..7d0fd1d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "kartenaale-card-templates",
-  "version": "1.0.1",
+  "version": "1.0.2",
   "description": "HTML and data for Anki cards",
   "repository": "https://gitlab.phaidra.org/kartenaale/card-templates",
   "author": "Philipp Stadler <hello@phstadler.com>",
-- 
GitLab