Aborted attempt to do GitLab CI

This commit is contained in:
Nathan Schneider
2019-07-29 23:06:22 -06:00
parent f095e510b5
commit d0c5af325d
2 changed files with 2 additions and 2 deletions

25
.gitlab-ci-broken.yml Normal file
View File

@ -0,0 +1,25 @@
# FTP auto-deploy; instructions here: https://is.gd/D84vXz
image: ruby:2.4.1
stages:
- deploy
before_script:
- apt-get update -qq && apt-get install -y -qq libcurl4-openssl-dev lftp
- bundle install
- gem install jekyll
deploy_script:
stage: deploy
only:
- master
environment:
name: website
url: https://cmci.colorado.edu/cmci
script:
- echo "Building.."
- chmod +x ./_scripts/build.sh
- ./_scripts/build.sh
- echo "Deploying.."
- chmod +x ./_scripts/deploy_website.sh
- ./_scripts/deploy_website.sh