Skip to content
Snippets Groups Projects

Feature/ci slides setup

Merged Dennis Gläser requested to merge feature/ci-slides-setup into master
Compare and Show latest version
1 file
+ 9
5
Compare changes
  • Side-by-side
  • Inline
+ 9
5
@@ -45,13 +45,17 @@ pages:
mkdir build && cd build
for MDFILE in ../slides/*.md; do
TARGET=${MDFILE/.md/.html}
pandoc -t revealjs -s --mathjax -o ${TARGET} ../slides/${MDFILE} \
-V revealjs-url=https://unpkg.com/reveal.js/ \
-V theme=${REVEAL_THEME} \
--include-in-header=../slides/dumux_course.css
echo "Processing file '${MDFILE}' into '${TARGET}'"
pandoc -t revealjs -s --mathjax \
-o ${TARGET} ../slides/${MDFILE} \
-V revealjs-url=https://unpkg.com/reveal.js/ \
-V theme=${REVEAL_THEME} \
--include-in-header=../slides/dumux_course.css
done
echo "PDW = $(pwd)"
ls
cd ..
- ls
- ls build
- mkdir public && mv build/* public
artifacts:
paths:
Loading