Skip to content

Instantly share code, notes, and snippets.

@marcingrzejszczak
Created August 18, 2016 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcingrzejszczak/ab170c543a2d144ed0a2fae8edac39bf to your computer and use it in GitHub Desktop.
Save marcingrzejszczak/ab170c543a2d144ed0a2fae8edac39bf to your computer and use it in GitHub Desktop.
Automatically deploys the docs for the given tag to spring-cloud-static; requires /tmp/ghpages.sh file downloaded
#!/bin/bash -x
version=$1
git checkout v${version} && mvn -s .settings.xml clean install -P docs -DskipTests -pl docs && /tmp/ghpages.sh -v ${version} -d ~/repo/all-cloud/spring-cloud-static && git reset --hard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment