Skip to content

Commit 1dc69d7

Browse files
committed
Add Gitlab CI support
1 parent 80fb79d commit 1dc69d7

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.gitlab-ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
image: ruby:2.7
2+
3+
workflow:
4+
rules:
5+
- if: '$CI_COMMIT_BRANCH'
6+
7+
pages:
8+
script:
9+
- gem install bundler
10+
- bundle install
11+
- bundle exec jekyll build -d public
12+
artifacts:
13+
paths:
14+
- public
15+
rules:
16+
- if: '$CI_COMMIT_BRANCH == "master"'

_config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ title: An open letter in support of RMS.
22
baseurl: ""
33
url: ""
44

5-
github_username: rms-support-letter
5+
github_username: rms-support-letter
6+
repository: rms-support-letter/rms-support-letter.github.io
67

78
# Build settings
89
theme: minima

0 commit comments

Comments
 (0)