├── .github └── workflows │ ├── render_and_upload.yml │ └── rendering.yml ├── Docker.md ├── Dockerfile ├── LICENSE ├── README.html ├── README.md ├── action.yml ├── entrypoint.sh ├── render.R └── test ├── html.Rmd ├── pdf.Rmd ├── pdf.pdf ├── pdf.tex └── word.Rmd /.github/workflows/render_and_upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/.github/workflows/render_and_upload.yml -------------------------------------------------------------------------------- /.github/workflows/rendering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/.github/workflows/rendering.yml -------------------------------------------------------------------------------- /Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/Docker.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/render.R -------------------------------------------------------------------------------- /test/html.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/test/html.Rmd -------------------------------------------------------------------------------- /test/pdf.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/test/pdf.Rmd -------------------------------------------------------------------------------- /test/pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/test/pdf.pdf -------------------------------------------------------------------------------- /test/pdf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/test/pdf.tex -------------------------------------------------------------------------------- /test/word.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucharo/rmarkdown-action/HEAD/test/word.Rmd --------------------------------------------------------------------------------