Skip to content

Commit

Permalink
Merge pull request #40 from f-klubben/revert-35-patch-3
Browse files Browse the repository at this point in the history
Revert "CI: Use make and don't use a container"
  • Loading branch information
JakobTopholt authored Jun 23, 2024
2 parents e320613 + 7082714 commit b85c95b
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,22 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container:
image: texlive/texlive:latest
steps:
- name: Install prerequisites
run: sudo apt-get install -y texlive-latex-extra ghostscript psutils
run: apt-get update && apt-get install -y ghostscript
- name: Checkout repository
uses: actions/checkout@v2
- name: Compile the document
run: |
make pdf
make booklet
mv main.pdf kontinuerlig.pdf
mv main_book.pdf sangbog.pdf
latex main.tex
makeindex main
latex main.tex
dvips main.dvi
dvipdf main.dvi kontinuerlig.pdf
sh ./ps2book.sh main.ps
ps2pdf main_book.ps sangbog.pdf
- name: Upload songbook (booklet)
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit b85c95b

Please sign in to comment.