From 08ff02159a0705192064b58777bafe3a7558632e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Fri, 23 Jul 2021 14:07:01 +0200 Subject: [PATCH] change actions filename --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4418b26 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: Crear enunciados + +on: push + +jobs: + convert_via_pandoc: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: docker://pandoc/latex:2.9 + with: + args: --output=output/enunciado.pdf enunciado.md + - uses: actions/upload-artifact@master + with: + name: output + path: output