-
-
Save tristanbes/89737a3edab60f16212a55fdfc1e7dc0 to your computer and use it in GitHub Desktop.
Creates a snapshot on platform using platform commands
This file contains 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
#!/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