mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
6e31ae6447
Now that our docs are hosted on Netlify, we should trigger builds every time a `docs/` file is added
16 lines
303 B
YAML
16 lines
303 B
YAML
name: Build Docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- '3.7'
|
|
- '4'
|
|
paths:
|
|
- 'docs/**'
|
|
jobs:
|
|
build:
|
|
name: build-docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run build hook
|
|
run: curl -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_BUILD_HOOK }}
|