mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-15 13:36:34 +03:00
19 lines
330 B
YAML
19 lines
330 B
YAML
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 }}
|