summaryrefslogtreecommitdiff
path: root/.github/workflows/docs.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/docs.yml')
-rw-r--r--.github/workflows/docs.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
new file mode 100644
index 0000000..6533220
--- /dev/null
+++ b/.github/workflows/docs.yml
@@ -0,0 +1,18 @@
+name: Build documentation
+
+on:
+ push:
+ branches:
+ - maint_2_8
+
+jobs:
+ docs:
+ runs-on: ubuntu-20.04
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Trigger docs build
+ run: ./scripts/travis_update_docs.sh
+ env:
+ TRAVIS_BRANCH: maint_2_8
+ TRAVIS_TOKEN: ${{ secrets.TRAVIS_TOKEN }}