Last active
February 5, 2020 11:30
-
-
Save dankochetov/226675f4aa6e70ea518bbd2dea61c703 to your computer and use it in GitHub Desktop.
Deploy static website to S3 using BitBucket pipelines (see build.sh)
This file contains hidden or 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
image: node:10.17.0 | |
pipelines: | |
branches: | |
develop: | |
- step: | |
deployment: development | |
script: | |
- ./scripts/build.sh | |
master: | |
- step: | |
deployment: production | |
script: | |
- ./scripts/build.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment