Publish DB Snapshot #61
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: Publish DB Snapshot | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 */12 * * *' | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install Postgres 17 client | |
| run: | | |
| sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
| curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg | |
| sudo apt-get update | |
| sudo apt-get install -y postgresql-client-17 | |
| echo "/usr/lib/postgresql/17/bin" >> "$GITHUB_PATH" | |
| - name: Verify Postgres client version | |
| run: | | |
| pg_dump --version | |
| psql --version | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build snapshot artifacts | |
| env: | |
| PUBLIC_SNAPSHOT_DATABASE_URL: ${{ secrets.PUBLIC_SNAPSHOT_DATABASE_URL }} | |
| run: npm run db:snapshot:publish | |
| - name: Ensure snapshot release exists | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: gh release view db-snapshot-latest || gh release create db-snapshot-latest --title "Latest DB Snapshot" --notes "Public onboarding snapshot for local setup." | |
| - name: Upload latest snapshot assets | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: gh release upload db-snapshot-latest temp/db-snapshots/pharos-db-snapshot.dump temp/db-snapshots/pharos-db-snapshot.json --clobber |