Skip to content

Commit

Permalink
👷 Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
punkstarman committed Mar 1, 2025
1 parent 4fcdf52 commit b8ad01e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all

all: target/public/fr.html
all: target/public/fr.html target/public/en.html target/public/index.html

cynefin-eu-field-guide.pot: en.adoc
po4a-gettextize -f asciidoc -m $< --master-charset "UTF-8" --po $@
Expand All @@ -14,3 +14,9 @@ target/fr.adoc: fr_FR.po en.adoc

target/public/fr.html: target/fr.adoc
asciidoctor -D . --backend html5 -o $@ $<

target/public/en.html: en.adoc
asciidoctor -D . --backend html5 -o $@ $<

target/public/index.html: target/public/en.html
cp $< $@

0 comments on commit b8ad01e

Please sign in to comment.