Jekyll project for our main website https://socialnerds.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
392 B
20 lines
392 B
stages: |
|
- deploy |
|
|
|
deploy: |
|
stage: deploy |
|
tags: |
|
- jekyll |
|
script: |
|
- apt-get update |
|
- apt-get install -y ruby-full build-essential zlib1g-dev rsync |
|
- gem install bundler jekyll |
|
- bundle install |
|
- jekyll build -d public |
|
- rsync -rvI --delete public/ /srv/socialnerds.org/ |
|
environment: |
|
name: production |
|
url: https://socialnerds.org |
|
only: |
|
- master |
|
|
|
|