Skip to content

Instantly share code, notes, and snippets.

@danharper83
Created August 29, 2017 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danharper83/b008acf99f88e09b9ac75397765534e3 to your computer and use it in GitHub Desktop.
Save danharper83/b008acf99f88e09b9ac75397765534e3 to your computer and use it in GitHub Desktop.
Creates a snapshot on platform using platform commands
#!/usr/bin/env bash
ORIGIN="develop"
TARGET="master"
if [ "$PLATFORM_BRANCH" = "$ORIGIN" ]; then
/app/.platformsh/bin/platform self-update -y -q
/app/.platformsh/bin/platform backup -y -q -p $PLATFORM_PROJECT -e $TARGET
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment