Created
June 27, 2018 19:54
-
-
Save pdeva/43609e46b65aa70d5ba3a0e20ad065d7 to your computer and use it in GitHub Desktop.
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
pipelines: | |
default: | |
- step: | |
name: deploy to dev | |
script: | |
# We are now actually deploying our dev branch to prod!! | |
- export AWS_ACCESS_KEY_ID="$PROD_AWS_ACCESS_KEY_ID" | |
- export AWS_SECRET_ACCESS_KEY="$PROD_AWS_ACCESS_KEY_SECRET" | |
- aws s3 sync --delete _site s3://$PROD_S3_BUCKET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment