This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SSH_SERVER="user@website" | |
DEPLOY_PATH="/var/www/website" | |
DEPLOY_MODE="production" | |
echo "Building file" | |
npm run build | |
echo 'Compressing to dist' | |
tar -czf dist.gz dist |