mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-13 04:26:33 +03:00
19 lines
425 B
YAML
19 lines
425 B
YAML
name: Build documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
# This should match the DOC_BRANCH value in the psycopg-website Makefile
|
|
- master
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger docs build
|
|
uses: peter-evans/repository-dispatch@v1
|
|
with:
|
|
repository: psycopg/psycopg-website
|
|
event-type: psycopg2-commit
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|