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.

20 lines
439 B
YAML

name: Advanced Usage
on: push
jobs:
convert_via_pandoc:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: create output directory
id: create_output
run: mkdir output
- uses: docker://pandoc/latex:2.9
with:
args: --output=output/enunciado.pdf enunciado.md
- uses: actions/upload-artifact@master
with:
name: output
path: output