We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 705e1c8 commit 97a8354Copy full SHA for 97a8354
.github/workflows/lilypond.yml
@@ -31,6 +31,7 @@ jobs:
31
with:
32
github-token: ${{ secrets.GITHUB_TOKEN }}
33
tectonic-version: ${{ env.TECTONIC_VERSION }}
34
+ - run: cp -f "$(command -v tectonic)" "${{ github.workspace }}/tectonic"
35
- name: Build PDFs
36
uses: addnab/docker-run-action@v3
37
@@ -42,8 +43,10 @@ jobs:
42
43
image: my-lilydock:${{ env.LILYPOND_VERSION }}
44
run: |
45
git config --global --add safe.directory '*' &&
- make --environment-overrides pdf
46
+ make --environment-overrides booklayout/toplevel.pdf SKIP_SPELLCHECK=1 TECTONIC=${{ github.workspace }}/tectonic
47
- uses: actions/upload-artifact@v4
48
49
name: pdfs
- path: PDF/*/*.pdf
50
+ path: |
51
+ PDF/*/*.pdf
52
+ booklayout/toplevel.pdf
0 commit comments