File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,24 @@ jobs:
38
38
- name : List files in the repository
39
39
run : |
40
40
ls ${{ github.workspace }}
41
+ mkdir output
41
42
- name : Pandoc generation
42
43
uses : docker://pandoc/core:3.0.1
43
44
with :
44
- args : " -f gfm+definition_lists -t html /github/workspace/xacml-v4.0-csd01.md -c https://docs.oasis-open.org/templates/css/markdown-styles-v1.7.3a.css --toc --toc-depth=5 -s -o /github/workspace/xacml-v4.0-csd01.html --metadata title='eXtensible Access Control Markup Language (XACML) Version 4.0'" # gets appended to pandoc command
45
+ args : >-
46
+ -f gfm+definition_lists
47
+ -t html
48
+ -c https://docs.oasis-open.org/templates/css/markdown-styles-v1.7.3a.css
49
+ --toc --toc-depth=5
50
+ --standalone
51
+ --metadata title="eXtensible Access Control Markup Language (XACML) Version 4.0"
52
+ --output output/xacml-v4.0-csd01.html
53
+ xacml-v4.0-csd01.md
45
54
- name : Upload artifact
46
55
uses : actions/upload-pages-artifact@v3
47
56
with :
48
- # Upload entire repository
49
- path : ' . '
57
+ # Upload output folder
58
+ path : ' output '
50
59
- name : Deploy to GitHub Pages
51
60
id : deployment
52
61
uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments