Skip to content

infralovers/training-docker-markdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Example GitLab-CI Container

This Container is for the Markdown-To-Pdf example

Example yaml

image: infralovers/markdown-pdf:0.2

stages:
  - lint
  - build
  
lintMarkdown:
  stage: lint
  script:
    - markdownlint *.md

buildPdf:
  stage: build
  script:
    - markdown-pdf *.md
  artifacts:
    paths:
      - ./*.pdf