Build PostgreSQL extension #1560
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 PostgreSQL extension | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| permissions: read-all | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Find available PostgreSQL versions and compile the extension against them | |
| run: | | |
| chmod +x build-pg-extension.sh | |
| bash build-pg-extension.sh | |
| - name: Upload extension binaries | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: PostgreSQL_Compiled_Extension | |
| path: extension_dist/ |