Add action for netlify docs build

Now that our docs are hosted on Netlify, we should trigger builds every time a `docs/` file is added
This commit is contained in:
Aaron Carlino 2019-11-20 16:26:13 +13:00 committed by GitHub
parent f67e15b8ee
commit 6e31ae6447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,15 @@
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 }}