From a0a2248306ab4059c5ac125428416770b4afae83 Mon Sep 17 00:00:00 2001 From: Siarhei Siniak Date: Wed, 2 Jul 2025 12:39:40 +0300 Subject: [PATCH] [+] improve deployment --- deps/test-task-2025-06-30-v1/.gitignore | 1 + deps/test-task-2025-06-30-v1/Makefile | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/deps/test-task-2025-06-30-v1/.gitignore b/deps/test-task-2025-06-30-v1/.gitignore index a6235a1..5549a96 100644 --- a/deps/test-task-2025-06-30-v1/.gitignore +++ b/deps/test-task-2025-06-30-v1/.gitignore @@ -1,3 +1,4 @@ !.tmuxp/ !python .env/ +releases/tar diff --git a/deps/test-task-2025-06-30-v1/Makefile b/deps/test-task-2025-06-30-v1/Makefile index 95b2e02..d577c2a 100644 --- a/deps/test-task-2025-06-30-v1/Makefile +++ b/deps/test-task-2025-06-30-v1/Makefile @@ -41,3 +41,9 @@ compose_env: compose_build_web: $(COMPOSE) build web + +git-release: + git archive \ + --format=tar \ + -o releases/tar/repo-$(git describe --tags).tar \ + HEAD