From 3e990b0780c64354252a47335349de16042ec0c7 Mon Sep 17 00:00:00 2001 From: Kevin Harrington Date: Sun, 19 Oct 2025 10:05:20 -0400 Subject: [PATCH] Adding the CI builder --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d11c2b6..067d65d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,6 +46,12 @@ jobs: - name: Generate PDF run: pdflatex -jobname=HowToBuildACommons-${{ github.ref_name }} ScopeSequencing.tex + - name: Generate Folding PDF + run: pdflatex ConsensusPocketReference.tex + + - name: Generate Folding Booklet PDF + run: pdflatex -jobname=Consensus-Pocket-Booklet-${{ github.ref_name }} ConsensusPocketReference-booklet.tex + - name: Generate Booklet PDF run: bookletimposer -b -a -f "Letter" -p "2x1" -o HowToBuildACommons-${{ github.ref_name }}-booklet.pdf HowToBuildACommons-${{ github.ref_name }}.pdf @@ -55,7 +61,7 @@ jobs: - name: Create or Update Release uses: softprops/action-gh-release@v1 with: - files: HowToBuildACommons-${{ github.ref_name }}.pdf,HowToBuildACommons-${{ github.ref_name }}-booklet.pdf,how-to-consensus-zine.svg + files: Consensus-Pocket-Booklet-${{ github.ref_name }}.pdf,HowToBuildACommons-${{ github.ref_name }}.pdf,HowToBuildACommons-${{ github.ref_name }}-booklet.pdf,how-to-consensus-zine.svg draft: false prerelease: false name: ${{ github.ref_name }}