diff options
author | Axel Dürkop <axel.duerkop@tuhh.de> | 2020-11-10 11:39:57 +0100 |
---|---|---|
committer | Axel Dürkop <axel.duerkop@tuhh.de> | 2020-11-10 11:39:57 +0100 |
commit | 0f47cfc1ba5847ffd8c373848df0662a01aec9b8 (patch) | |
tree | 906ee613f95ecd5cd80e5bdbe5f977fec5238f24 /.gitlab-ci.yml | |
parent | cc20b4d9c2bcb1d1f944de8444dd30b8366526df (diff) |
Reorder files and config
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 87 |
1 files changed, 3 insertions, 84 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2ac967..0a093f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,91 +1,10 @@ -image: xldrkp/pandoc:latest +image: pandoc/pandoc:2.10.1 + build: - before_script: - - git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@collaborating.tuhh.de/cfo8486/buchprojekt.wiki.git script: - - ls -la - - cd buchprojekt.wiki - - ls -la - - ls -la 1/ - pandoc --version - - pandoc - --filter pandoc-citeproc ../.pandoc-config.yml - ./1/chapter.md - ./1/a_tipp.md - ./1/b_tipp.md - ./1/c_tipp.md - ./1/d_tipp.md - ./1/e_tipp.md - ./1/f_tipp.md - ./1/g_tipp.md - ./1/h_tipp.md - ./2/chapter.md - ./2/a_tipp.md - ./2/b_tipp.md - ./2/c_tipp.md - ./2/d_tipp.md - ./2/e_tipp.md - ./3/chapter.md - ./3/a_tipp.md - ./3/b_tipp.md - ./3/c_tipp.md - ./3/d_tipp.md - ./3/e_tipp.md - ./3/f_tipp.md - ./3/g_tipp.md - ./4/chapter.md - ./4/a_tipp.md - ./4/b_tipp.md - ./4/c_tipp.md - ./4/d_tipp.md - ./4/e_tipp.md - ./4/f_tipp.md - ./4/g_tipp.md - ./5/chapter.md - ./5/a_tipp.md - ./5/b_tipp.md - ./5/c_tipp.md - ./5/d_tipp.md - ./6/chapter.md - ./6/a_tipp.md - ./6/b_tipp.md - ./6/c_tipp.md - ./6/d_tipp.md - ./7/chapter.md - ./7/a_tipp.md - ./7/b_tipp.md - ./7/c_tipp.md - ./7/d_tipp.md - ./7/e_tipp.md - ./7/f_tipp.md - ./7/g_tipp.md - ./7/h_tipp.md - ./7/i_tipp.md - ./7/j_tipp.md - ./7/k_tipp.md - ./7/l_tipp.md - ./7/m_tipp.md - ./7/n_tipp.md - ./8/chapter.md - ./8/a_tipp.md - ./8/b_tipp.md - ./8/c_tipp.md - ./9/chapter.md - ./9/a_tipp.md - ./9/b_tipp.md - ./9/c_tipp.md - ./9/d_tipp.md - ./9/e_tipp.md - ./9/f_tipp.md - ./9/g_tipp.md - ./9/h_tipp.md - ./9/i_tipp.md - ./9/j_tipp.md - ./9/k_tipp.md - ./9/l_tipp.md - ./9/m_tipp.md - -o ../77-tipps.pdf + - xargs -a ./content/toc.txt pandoc --filter pandoc-citeproc -o build/book.pdf .config/.pandoc-config.yml artifacts: paths: - "*.pdf" |