mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-07 12:50:32 +03:00
bf7fc6cfa4
Bumps [peter-evans/repository-dispatch](https://github.com/peter-evans/repository-dispatch) from 2 to 3. - [Release notes](https://github.com/peter-evans/repository-dispatch/releases) - [Commits](https://github.com/peter-evans/repository-dispatch/compare/v2...v3) --- updated-dependencies: - dependency-name: peter-evans/repository-dispatch dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v3
|
|
with:
|
|
repository: psycopg/psycopg-website
|
|
event-type: psycopg2-commit
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|