diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2021-06-07 22:53:06 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2021-06-07 22:53:59 +0200 |
commit | b050a73c37ee229b7639dfd2364367dc22dac721 (patch) | |
tree | c75f25e60cfe7886cbe7dd9acea402a94583ead8 /deploy.sh | |
parent | c0ccef87cd66e9de15e67b06f57a23228143bb63 (diff) | |
download | hoverbit-ble-b050a73c37ee229b7639dfd2364367dc22dac721.tar.gz hoverbit-ble-b050a73c37ee229b7639dfd2364367dc22dac721.zip |
:hammer: Move version commit step
Diffstat (limited to 'deploy.sh')
-rwxr-xr-x | deploy.sh | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -24,10 +24,6 @@ VERSION=$(cat package.json \ | sed 's/[",]//g' \ | tr -d '[[:space:]]') -echo "Deploying for tag: $VERSION." -git add package.json package-lock.json -git commit --amend --no-edit - tput setaf 4 echo "> Build app" tput sgr0 @@ -37,6 +33,12 @@ npm install npm run build tput setaf 4 +echo "Deploying for tag: $VERSION." +tput sgr0 +git add package.json package-lock.json +git commit --amend --no-edit + +tput setaf 4 echo "> Copy to gh-pages branch and commit" tput sgr0 |