We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5723be commit bc88c07Copy full SHA for bc88c07
.github/workflows/main.yaml
@@ -0,0 +1,32 @@
1
+name: Advanced Usage
2
+
3
+on: [push, pull_request]
4
5
+env:
6
+ FILE_NAME: vuejs-interview-questions
7
8
+jobs:
9
+ convert_via_pandoc:
10
+ runs-on: ubuntu-18.04
11
+ steps:
12
+ - uses: actions/checkout@v2
13
14
+ - name: Create output directory
15
+ run: |
16
+ mkdir output # create output dir
17
18
+ - name: Create PDF
19
+ uses: docker://pandoc/latex:2.10
20
+ with:
21
+ args: --pdf-engine=xelatex --output=output/${{env.FILE_NAME}}.pdf README.md
22
23
+ - name: Create epub
24
25
26
+ args: --output=output/${{env.FILE_NAME}}.epub README.md
27
28
+ - name: Upload
29
+ uses: actions/upload-artifact@master
30
31
+ name: output
32
+ path: output
0 commit comments