forked from psi-4ward/psitransfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-bundle.sh
executable file
·48 lines (40 loc) · 1.1 KB
/
create-bundle.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
# Get the current tag or use commit hash if there's none
COMMIT=$(git log -n1 --pretty='%h' 2>/dev/null || echo current)
NAME=$(git describe --exact-match --tags $COMMIT 2>/dev/null || echo $COMMIT)
echo "### Building frontend apps"
echo "======================================================"
cd $DIR/../app
npm ci
npm run build
echo
echo "### Bundling to _releases/psitransfer-$NAME.tar.gz"
echo "======================================================"
cd $DIR/..
mkdir -p _releases
tar -czf _releases/psitransfer-$NAME.tar.gz --transform "s~^~psitransfer-$NAME/~" \
LICENSE \
README.md \
Dockerfile \
.dockerignore \
app.js \
cli.js \
config.js \
package.json \
package-lock.json \
docs \
lib \
lang \
plugins \
public
cd $DIR/..
#if [ -d .git ]; then
# LAST_TAG=$(git tag | head -n 2 | tail -n 1)
# echo
# echo "### Changelog $LAST_TAG..HEAD"
# echo "======================================================"
# [ -z "$LAST_TAG" ] && git log --oneline || git log $LAST_TAG..HEAD --oneline
#fi