This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe-2/release.sh

20 lines
317 B
Bash
Raw Normal View History

2018-11-13 08:23:57 +00:00
#!/usr/bin/env bash
set -eux
set -o pipefail
CURRENT_DIR=$(pwd)
FRONTEND_PATH='lib/web/frontend'
cd ${FRONTEND_PATH}
2018-11-17 15:37:25 +00:00
node_modules/.bin/bsb -make-world
2018-11-13 08:23:57 +00:00
NODE_ENV=production node fuse build
cd ${CURRENT_DIR}
# Force new statics to be picked up
MIX_ENV=prod mix compile --force
MIX_ENV=prod mix release --env=prod