philomena/post-receive
2020-08-03 15:37:02 -04:00

48 lines
1.3 KiB
Bash
Executable file

#!/usr/bin/env bash
# Set up environment
source ~/bin/philomena-env
read oldrev newrev ref
echo "Updating $oldrev -> $newrev ($ref)"
# Clear variable set to '.' so git commands don't complain
unset GIT_DIR
cd ~/philomena
die() {
echo "$*" 1>&2
exit 1
}
if git diff --name-only $oldrev $newrev | grep -Ee "^mix.(exs|lock)"; then
echo "Fetching deps"
mix deps.get || die "mix failed to update"
fi
# Run migrations
if git diff --name-only $oldrev $newrev | grep "^priv/repo/migrations"; then
echo "Running database migrations"
mix ecto.migrate || die "ecto.migrate failed"
fi
# Compile assets
if git diff --name-only $oldrev $newrev | grep "^assets/"; then
echo "Compiling assets"
npm install --prefix ./assets || die "assets install failed"
npm run deploy --prefix ./assets
mix phx.digest || die "assets compile failed"
fi
echo "Building release"
mix release --overwrite || die "failed to generate release"
# Include a task to restart your running appserver instances here.
#
# In general, you should have many app instances configured on different
# ports using the PORT environment variable, so as to allow you to roll
# releases and deploy new code with no visible downtime.
#
# You can use a reverse proxy like haproxy or nginx to load balance between
# different server instances automatically.