chore(deps): update postgres:18 docker digest to 1a5b3e7 #334
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: Deploy Integrity Check | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| verify-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| - name: Setup Test Environment | |
| env: | |
| FIREBASE_JSON: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_JSON }} | |
| run: | | |
| sudo mkdir -p /mnt/data/uploads | |
| sudo chmod 777 /mnt/data/uploads | |
| echo "$FIREBASE_JSON" > firebase-service-account.json | |
| - name: Run Make Deploy | |
| run: | | |
| export FIREBASE_BUCKET_NAME=${{ secrets.FIREBASE_BUCKET_NAME }} | |
| make deploy | |
| env: | |
| SECRET_KEY: ${{ secrets.SECRET_KEY }} |