Skip to content

Instantly share code, notes, and snippets.

@adamwathan
Created November 4, 2014 14:57
Show Gist options
  • Save adamwathan/6172156f26345758ef7a to your computer and use it in GitHub Desktop.
Save adamwathan/6172156f26345758ef7a to your computer and use it in GitHub Desktop.
Sculpin GitHub publish script
function scublish() {
sculpin generate --env=prod
cd output_prod
git add --all
git commit -am "$1"
git push origin master
cd ..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment