Skip to content

Markdown to PDF and Release #1

Markdown to PDF and Release

Markdown to PDF and Release #1

Workflow file for this run

name: Markdown to PDF and Release
on:
release:
types: [published]
jobs:
build-tutoriels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pandoc
run:
sudo apt-get install pandoc &&
sudo apt-get install texlive-latex-recommended
- name: Convert to PDF
run: ./.build/generate_tutoriels.sh
- name: Create Release
uses: ncipollo/[email protected]
with:
artifacts: out/*
makeLatest: true