Improve deployment
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
#!/bin/sh
|
||||
set -xe
|
||||
|
||||
# Pull build branch to make sure it's up to date
|
||||
git pull origin build-production
|
||||
# Check out build branch
|
||||
git checkout build-production
|
||||
# Copy from build dir to root
|
||||
|
||||
10
scripts/update-version-file.sh
Executable file
10
scripts/update-version-file.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
PACKAGE_VERSION=$(cat package.json \
|
||||
| grep version \
|
||||
| head -1 \
|
||||
| awk -F: '{ print $2 }' \
|
||||
| sed 's/[",]//g' \
|
||||
| tr -d '[[:space:]]')
|
||||
|
||||
echo $PACKAGE_VERSION > dist/VERSION
|
||||
Reference in New Issue
Block a user