feat: add workflow to build riscv64 binaries and cache libpq #114
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v4 | |
| with: | |
| repository: psycopg/psycopg-website | |
| event-type: psycopg2-commit | |
| token: ${{ secrets.ACCESS_TOKEN }} |