Skip to content

Instantly share code, notes, and snippets.

@dalthonmh
Created March 10, 2022 00:01
Show Gist options
  • Save dalthonmh/a239fa6293ebd56cf0d0d883572aa50f to your computer and use it in GitHub Desktop.
Save dalthonmh/a239fa6293ebd56cf0d0d883572aa50f to your computer and use it in GitHub Desktop.
#!/bin/bash
# must enable execution permission with:
# sudo chmod 774 deploy.sh
echo Deploying app...
git pull origin dev
yarn build
rm -r ../build
cp -r build ../
echo Deploy finished.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment