Skip to content

Commit c3c2eed

Browse files
authored
Create main.yml
1 parent b069973 commit c3c2eed

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
# Controls when the workflow will run
4+
on:
5+
push:
6+
# Allows you to run this workflow manually from the Actions tab
7+
workflow_dispatch:
8+
9+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+
jobs:
11+
createpdf:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- uses: ./
17+
name: run-libreoffice
18+
id: libreoffice
19+
with:
20+
# Required, the command to run
21+
command: libreoffice --headless --invisible --convert-to pdf 'README.md' --outdir 'output'

0 commit comments

Comments
 (0)