Skip to content

Commit 0fdd1a5

Browse files
[fix](build): I need output files (#130)
* [fix](build): I need output files Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): GitHub Copilot suggestion(don't need RTF) Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): see if pdfa works for images Signed-off-by: Ralph Hightower <[email protected]> --------- Signed-off-by: Ralph Hightower <[email protected]>
1 parent 5410cd8 commit 0fdd1a5

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

.github/workflows/pandoc.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# --verbose \ # debug
4747
# --output output/${FILE_NAME}.tex $f
4848
# mtxrun --path=output --result=${FILE_NAME}.pdf --script context ${FILE_NAME}.tex
49-
pandoc --standalone --from markdown --to pdf --output output/${FILE_NAME}.pdf $f
49+
pandoc --standalone --from markdown --to pdfa --output output/${FILE_NAME}.pdf $f
5050
git add output/${FILE_NAME}.pdf
5151
done
5252
@@ -58,14 +58,6 @@ jobs:
5858
git add output/${FILE_NAME}.docx
5959
done
6060
61-
- name: Build RTF
62-
run: |
63-
for f in markdown/*.md; do
64-
FILE_NAME=$(basename "$f" | sed 's/.md//g')
65-
pandoc --standalone ${{ steps.version.outputs.smart_flag }} $f --output output/${FILE_NAME}.rtf
66-
git add output/${FILE_NAME}.rtf
67-
done
68-
6961
- name: Check in documents
7062
run : |
7163
git commit -m "[docs](doc): adding output to GitHub"

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
*.log
22
*.swo
33
*.swp
4-
output/
54
result
65
result-*
76
.envrc

0 commit comments

Comments
 (0)