Skip to content

Commit 87aa6e0

Browse files
thomasjpfanlwasser
authored andcommitted
CI Enable CircleCI to build docs to be avalible in PRs
1 parent 01d001e commit 87aa6e0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.circleci/config.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: cimg/ruby:3.2.2
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install dependencies
11+
command: bundle install
12+
- run:
13+
name: Jekyll build
14+
command: |
15+
bundle exec jekyll build --baseurl /output/job/$CIRCLE_WORKFLOW_JOB_ID/artifacts/0/_site
16+
- store_artifacts:
17+
path: _site
18+
destination: _site
19+
20+
workflows:
21+
version: 2
22+
build:
23+
jobs:
24+
- build

0 commit comments

Comments
 (0)