From 2d161851109c147a2e43c0e4e2e66551e292705d Mon Sep 17 00:00:00 2001 From: "Blake (Ralph Vente)" Date: Mon, 6 Jan 2020 10:13:31 -0500 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..468703b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: CI + +on: [push] + +jobs: + convert_via_pandoc: + name: Convert via Pandoc + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v1 + - run: mkdir output + - uses: maxheld83/pandoc@v2 + with: + args: "--standalone --output=output/constitution.pdf constitution.md" + - uses: actions/upload-artifact@master + with: + name: output + path: output