-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate PDFs for glyphs from markdown when compiling specification
- Loading branch information
1 parent
0db6674
commit 708ac75
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,19 @@ jobs: | |
- name: Set up Git repository | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install dependency | ||
run: | | ||
cd specification/glyphscript | ||
npm install markdown-pdf | ||
- name: Generate PDFs for glyphs | ||
run: | | ||
cd specification/glyphscript | ||
bash rebuild_glyph_inputs.sh | ||
bash rebuild_interactionglyph_inputs.sh | ||
bash rebuild_interactionnodeglyph_inputs.sh | ||
bash rebuild_speciesglyph_inputs.sh | ||
- name: Compile LaTeX document | ||
uses: dante-ev/[email protected] | ||
with: | ||
|