diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8f96743..e608509 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -22,7 +22,7 @@ jobs: run: git clone https://git.0x45.cz/em/mixtape.git /workspace/em/mixtape - name: Build Chordpro - run: make pdf html + run: make pdf html songbook - name: Build Zola run: zola build diff --git a/makefile b/makefile index d386a54..ea57153 100644 --- a/makefile +++ b/makefile @@ -10,7 +10,7 @@ SRC_EXTENSION := .cho SONG_CHO := $(foreach dir,$(SRC_DIR),$(wildcard $(dir)/*$(SRC_EXTENSION))) SONG_PDF := $(patsubst %$(SRC_EXTENSION),%.pdf,$(SONG_CHO)) SONG_HTML := $(patsubst %$(SRC_EXTENSION),%.html,$(SONG_CHO)) -SONGBOOK := songbook.pdf +SONGBOOK := content/songbook.pdf .DEFAULT_GOAL := pdf