From 96b1eb311e903779377a6ca93ee83ea16d3c36f0 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Thu, 7 Jul 2022 14:37:26 +1200 Subject: [PATCH] MNT Add action for building docs --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..9b271ee6f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: Build Docs +on: + push: + branches: + - '3' + - '4.11' + paths: + - 'en/**' +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 }} +