Skip to content

Commit

Permalink
Allow building lesson using GitLab Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
unode authored Nov 22, 2020
1 parent c4b6e23 commit 9372d5e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
image:
name: carpentries/lesson-docker:latest
entrypoint: [""]

variables:
LC_ALL: "C.UTF-8"
MAKEFLAGS: "-j 8"

pages:
stage: deploy
script:
- make site
- mv _site public
artifacts:
paths:
- public
only:
- gh-pages

0 comments on commit 9372d5e

Please sign in to comment.