From d346600f63c722c7a8e6460488cbed245d38ee54 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Tue, 23 Aug 2022 15:29:56 +1200 Subject: [PATCH] MNT Add github action for deploying userdocs --- .github/workflows/deploy-userhelp-docs.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/deploy-userhelp-docs.yml diff --git a/.github/workflows/deploy-userhelp-docs.yml b/.github/workflows/deploy-userhelp-docs.yml new file mode 100644 index 0000000..d4dba4a --- /dev/null +++ b/.github/workflows/deploy-userhelp-docs.yml @@ -0,0 +1,16 @@ +name: Deploy Userhelp Docs +on: + push: + branches: + - '4' + - '3' + - '2' + paths: + - 'docs/en/userguide/**' +jobs: + deploy: + name: deploy-userhelp-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 }}