Created
January 16, 2017 19:19
-
-
Save justinmusgrove/3431626e0dab5715b647be1c2ecb8619 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
# This is a sample build configuration for Ruby. | |
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. | |
# Only use spaces to indent your .yml configuration. | |
# ----- | |
# You can specify a custom docker image from Docker Hub as your build environment. | |
image: ruby:2.3.0 | |
pipelines: | |
default: | |
- step: | |
script: # Modify the commands below to build your repository. | |
- apt-get update | |
- apt-get --assume-yes install default-jre | |
- java -version | |
- bundler --version | |
- bundle install | |
- JEKYLL_ENV=production jekyll build | |
- s3_website push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment