From b8dc73407552d77ecec5c0852fe64af953575492 Mon Sep 17 00:00:00 2001 From: Maximilian Held Date: Tue, 13 Aug 2019 13:38:06 +0200 Subject: [PATCH] test git ref #3 does github always check out the right branch? --- README.md | 53 ----------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index 59c5eaa..0000000 --- a/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# GitHub Action to Convert Documents via Pandoc - -[![GitHubActions](https://img.shields.io/badge/as%20seen%20on%20-GitHubActions-blue.svg)](https://github-actions.netlify.com/pandoc) - -This action lets you use [pandoc](https://pandoc.org/), the **swiss army knife of document conversion**. - -It is based on the [`pandoc/latex`](https://hub.docker.com/r/pandoc/latex/) docker image and thus ships with LaTeX, so you can also convert right through to PDF. - -The action currently uses pandoc 2.6 and will be upgrade periodically. -If you would like to see an upgrade, please [file an issue](http://github.com/maxheld83/pandoc/issues). - - -## Inputs - -None. - - -## Outputs - -None. - - -## Secrets - -None. - - -## Environment Variables - -None. - - -## Example Usage - -All arguments get appended to the [`pandoc` command](https://pandoc.org/MANUAL.html). - -``` -name: Document Conversion - -on: [push] - -jobs: - convert_via_pandoc: - name: Convert via Pandoc - runs-on: ubuntu-18.04 - steps: - - name: Run Pandoc - uses: maxheld83/pandoc@master - args: - - '--standalone' - - '--output=index.html' - - 'README.md' -```