Files
the-sourdough-framework/.github/workflows/test-book-website-pull-request.yml
Hendrik Kleinwaechter d0f71d9b0e Runs tests on push (#317)
* Runs tests on push

* Move out config
2023-12-19 13:08:50 +01:00

15 lines
379 B
YAML

name: Test building book and website with custom image
on:
pull_request:
jobs:
build-and-push-image:
uses: ./.github/workflows/docker-build-push.yml
test-building-book-website:
needs: build-and-push-image
uses: ./.github/workflows/test-book-website.yml
with:
docker-image: ghcr.io/${{ github.repository }}:${{ github.event.pull_request.head.ref }}