mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-18 09:01:12 -06:00
Prevent running validate when pushing on main
Rational is as follow:
- We ran validate-book on each push on the PR branch anyway
- We will run release_book which is a superset of validate
This commit is contained in:
8
.github/workflows/validate-book-build.yml
vendored
8
.github/workflows/validate-book-build.yml
vendored
@@ -1,5 +1,11 @@
|
||||
name: Validate LaTeX Document
|
||||
on: [ push, pull_request ]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**' # All branches
|
||||
- '!main' # But main as will do it anyway and more in release_book
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test_building_book:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user