mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-08 04:01:11 -06:00
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
name: Test book and website for given image
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
env:
|
|
DOCKER_IMAGE: ghcr.io/${{ github.repository }}:latest
|
|
|
|
jobs:
|
|
test-book-website:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up git repository
|
|
uses: actions/checkout@v3
|
|
- name: Print dependency versions
|
|
uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: ${{ env.DOCKER_IMAGE }}
|
|
options: -v ${{ github.workspace }}:/app
|
|
run: |
|
|
cd /app/book
|
|
make show_tools_version
|
|
- name: Print build variables
|
|
uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: ${{ env.DOCKER_IMAGE }}
|
|
options: -v ${{ github.workspace }}:/app
|
|
run: |
|
|
cd /app/book
|
|
make printvars
|
|
- name: Test baking the release versions and website
|
|
uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: ${{ env.DOCKER_IMAGE }}
|
|
options: -v ${{ github.workspace }}:/app
|
|
run: |
|
|
cd /app/book
|
|
make -j -O serif ebook website
|
|
- name: Upload book artifacts to GitHub
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: books
|
|
path: |
|
|
book/book_serif/book.log
|
|
book/book_serif/book.pdf
|
|
book/book-epub/book.epub
|
|
- name: Upload website artifacts to GitHub
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: website
|
|
path: website/static_website_html
|