2021-02-28 19:32:54 +03:00
|
|
|
name: Build documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-05-22 16:40:53 +03:00
|
|
|
branches:
|
2021-06-17 14:39:41 +03:00
|
|
|
# This should match the DOC_BRANCH value in the psycopg-website Makefile
|
2021-06-16 18:37:59 +03:00
|
|
|
- master
|
2021-02-28 19:32:54 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
2021-06-17 14:39:41 +03:00
|
|
|
runs-on: ubuntu-latest
|
2021-02-28 19:32:54 +03:00
|
|
|
steps:
|
2021-05-22 16:40:53 +03:00
|
|
|
- name: Trigger docs build
|
2023-10-29 19:09:43 +03:00
|
|
|
uses: peter-evans/repository-dispatch@v2
|
2021-06-17 14:39:41 +03:00
|
|
|
with:
|
|
|
|
repository: psycopg/psycopg-website
|
|
|
|
event-type: psycopg2-commit
|
|
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|