-
Notifications
You must be signed in to change notification settings - Fork 20
/
release.sh
executable file
·40 lines (33 loc) · 1.02 KB
/
release.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
#!/bin/bash
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
if [ -z "$1" ]
then
echo "Error: Must pass version string (e.g. v1.2.3) as first parameter.";
exit 0;
fi
echo "Releasing version $1";
if [ ! -d "$SCRIPT_DIR/release" ] || [ -d "$SCRIPT_DIR/release" ] && [ ! -d "$SCRIPT_DIR/release/.git" ]
then
# Cleanup and clone fresh copy of repo on build branch.
rm -rf "$SCRIPT_DIR/release";
git clone --recursive --branch build [email protected]:humanmade/hm-gutenberg-tools.git release
else
# Cleanup any changes and reset to build branch.
cd "${SCRIPT_DIR}/release" || exit;
git clean -fd;
git reset origin/build --hard;
fi
# Merge in latest from master, install dependencies and build.
cd "${SCRIPT_DIR}/release" || exit;
git fetch origin;
git merge origin/main --no-edit;
npm ci;
npm run build;
# Stage changes ready for commit.
git add .;
git add -f build;
# Commit to build branch and tag release.
git commit -m "Build version $1";
git tag "${1}";
git push origin build;
git push --tags;