We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459074b commit c5046d9Copy full SHA for c5046d9
1 file changed
README.md
@@ -1,2 +1,18 @@
1
-# pptx-to-pdf
2
-A custom action to convert pptx files into pdf
+# Libreoffice cli action
+
3
+This action runs any command inside the libreoffice base image
4
5
+## Inputs
6
7
+## `command`
8
9
+**Required** The command line to run. Default `libreoffice --headless --invisible --version`.
10
11
+## Usage
12
13
+```yaml
14
+uses: actions/libreoffice-action@v1
15
+with:
16
+ # Required, the command to run
17
+ command: libreoffice --headless --invisible --convert-to pdf 'originalfile.pptx' --outdir 'output'
18
+```
0 commit comments