You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
549 B
YAML
24 lines
549 B
YAML
image: rockylinux:9
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- dnf install -y texlive-xetex wget
|
|
- wget https://github.com/jgm/pandoc/releases/download/2.19.2/pandoc-2.19.2-linux-amd64.tar.gz
|
|
- tar xfvz pandoc-2.19.2-linux-amd64.tar.gz
|
|
|
|
# - mkdir public
|
|
|
|
# - pandoc-2.10/bin/pandoc -f org -t html5 --standalone en.org -o public/en.html
|
|
# - pandoc-2.10/bin/pandoc -f org -t html5 --standalone es.org -o public/es.html
|
|
|
|
- cp org.css public/.
|
|
- cp en.html public/.
|
|
- cp es.html public/.
|
|
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|