File: docs.yml

package info (click to toggle)
psycopg3 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,836 kB
  • sloc: python: 46,657; sh: 403; ansic: 149; makefile: 73
file content (23 lines) | stat: -rw-r--r-- 569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Build documentation

on:
  push:
    branches:
      # This should match the DOC3_BRANCH value in the psycopg-website Makefile
      - master

concurrency:
  group: ${{ github.workflow }}-${{ github.ref_name }}
  cancel-in-progress: true

jobs:
  docs:
    runs-on: ubuntu-latest
    if: github.repository == 'psycopg/psycopg'
    steps:
      - name: Trigger docs build
        uses: peter-evans/repository-dispatch@v4
        with:
          repository: psycopg/psycopg-website
          event-type: psycopg3-commit
          token: ${{ secrets.ACCESS_TOKEN }}