-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
36 lines (31 loc) · 834 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
genomes:
yq -i -P 'sort_keys(..)' glossary.yml
typst compile main.typ
rm docs/notes.pdf
cp main.pdf docs/notes.pdf
./buildhtml.sh
signal:
typst compile signalling.typ
rm -f docs/signalling.pdf
cp signalling.pdf docs/signalling.pdf
./buildhtml.sh
behaviour:
typst compile behaviour.typ
typst compile heyes.typ
rm -f docs/behaviour.pdf
rm -f docs/heyes.pdf
cp heyes.pdf docs/heyes.pdf
cp behaviour.pdf docs/behaviour.pdf
./buildhtml.sh
molecular:
quarto render qmrc-ford.qmd
rm -f docs/qmrc-ford.pdf
cp qmrc-ford.pdf docs/qmrc-ford.pdf
quarto render qmrc-morelli.qmd
rm -f docs/qmrc-morelli.pdf
cp qmrc-morelli.pdf docs/qmrc-morelli.pdf
./buildhtml.sh
update:
git add --all
git commit -m "updating latest"
git push origin main