Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit b813af2

Browse files
committed
Generate packages only when they're tagged
1 parent 5a68fa1 commit b813af2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bin/deploy.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/usr/bin/env bash
22

3+
# We only generate packages for tagged versions
4+
git describe --tags --exact-match HEAD || {
5+
exit 0
6+
}
7+
38
# Unpack secrets
49
tar xvf .travis/secrets.tar -C .travis
510

0 commit comments

Comments
 (0)