Skip to content

Export artifacts

Export artifacts #14

Workflow file for this run

name: Build PDF
on: [push]
jobs:
build-and-run:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: lilypond_docker/Dockerfile
push: false
tags: benkuhn/lilypond:latest
cache-from: type=gha
cache-to: type=gha,mode=max
load: true
- name: Compile handout
run: ./build.sh handout
- name: Compile booklet
run: ./build.sh booklet
- name: Archive PDFs
uses: actions/upload-artifact@v3
with:
name: pdfs
path: |
booklet.pdf
handout.pdf