summaryrefslogtreecommitdiff
path: root/.github/workflows/docs.yml
blob: 9d511bfe5daebda3ce3642d05d62d192fd41b61f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Build documentation

on:
  push:
    branches:
      - master

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: master
          TRAVIS_TOKEN: ${{ secrets.TRAVIS_TOKEN }}