Created
August 28, 2019 19:43
-
-
Save zaydek-old/852d6398391e71b737b2607424f89c4d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Building… | |
osascript -e 'display notification \"Building…\" with title \"Codex\"' && | |
yarn build 1>/dev/null && | |
# Deploying… | |
osascript -e 'display notification \"Deploying…\" with title \"Codex\"' && | |
echo build | netlify deploy 1>/dev/null && | |
# Deployed! | |
echo build | netlify deploy --prod 1>/dev/null && | |
osascript -e 'display notification \"Deployed!\" with title \"Codex\"'", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment