resolved n+1 error on Creatures endpoint (crossreference prefetching)… #474
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 and deploy" | |
| on: | |
| push: | |
| branches: | |
| - staging | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| - 'docs/**' | |
| - 'scripts/**' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| concurrency: | |
| group: deploy-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Login to GHCR | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set image tags | |
| run: | | |
| echo "GITHUB_REF = $GITHUB_REF" > version.py | |
| echo "GITHUB_SHA = $GITHUB_SHA" >> version.py | |
| if [[ $GITHUB_REF == refs/heads/main ]]; then | |
| echo "IMAGE_TAGS=ghcr.io/open5e/open5e-api:latest" >> $GITHUB_ENV | |
| elif [[ $GITHUB_REF == refs/heads/staging ]]; then | |
| echo "IMAGE_TAGS=ghcr.io/open5e/open5e-api:beta" >> $GITHUB_ENV | |
| fi | |
| - name: Build and push | |
| uses: docker/build-push-action@v7 | |
| with: | |
| push: true | |
| tags: ${{ env.IMAGE_TAGS }} | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| - name: Install jq tool | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install jq | |
| - name: Set Digital Ocean app id | |
| run: | | |
| if [[ $GITHUB_REF == refs/heads/main ]]; then | |
| echo "DIGITALOCEAN_APP_ID=${{ secrets.MAIN_APP_ID }}" >> $GITHUB_ENV | |
| elif [[ $GITHUB_REF == refs/heads/staging ]]; then | |
| echo "DIGITALOCEAN_APP_ID=${{ secrets.STAGING_APP_ID }}" >> $GITHUB_ENV | |
| fi | |
| - name: Deploy to Digital Ocean | |
| env: | |
| DIGITALOCEAN_TOKEN: ${{ secrets.DIGITALOCEAN_TOKEN }} | |
| run: ./scripts/do_app_deploy.sh | |
| - name: Run Smoke Test | |
| run: | | |
| APP_URL=$(jq -r '.app.live_url' ./app.json) | |
| echo "Waiting 60s for app rollout before smoke test..." | |
| sleep 60 | |
| for attempt in 1 2 3 4 5 6; do | |
| echo "Smoke test attempt ${attempt}..." | |
| if python3 ./scripts/smoke_test.py --url "$APP_URL"; then | |
| exit 0 | |
| fi | |
| echo "Smoke test failed; retrying in 30s..." | |
| sleep 30 | |
| done | |
| exit 1 |