Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit 232b9eb

Browse files
chore(build): add tar rule un makefile
1 parent 357e6b3 commit 232b9eb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo git tag is: $TAG
88

99
make build-tests integration-test deb && \
1010
echo Create tar && \
11-
tar cvf documentare-simdoc-$TAG.tar *.jar usr ../simdoc*.deb && \
11+
make tar && \
1212
echo && \
1313
echo OK && exit 0
1414

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ build:
2121
integration-test:
2222
(cd simdoc/apps/ && ./refIntegrationTest.sh)
2323

24+
tar:
25+
tar cvf documentare-simdoc-${VERSION}.tar *.jar usr ../simdoc*.deb
26+
2427
# Build debian package
2528
deb:
2629
dch -v ${VERSION} "git update, version ${VERSION}"

0 commit comments

Comments
 (0)