Skip to content

feat: game over dialog #136

feat: game over dialog

feat: game over dialog #136

Workflow file for this run

# see:
# * https://fly.io/docs/blueprints/review-apps-guide
# * https://github.com/superfly/fly-pr-review-apps/blob/1.2.1/README.md
name: Fly Review
on:
pull_request:
types: [opened, reopened, synchronize, closed]
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
FLY_APP: pr-${{ github.event.number }}-mmmines
FLY_ORG: mmmines
FLY_REGION: ord
jobs:
review:
runs-on: ubuntu-latest
outputs:
url: ${{ steps.deploy.outputs.url }}
# ensure only one deployment runs at a time
concurrency:
group: pr-${{ github.event.number }}
environment:
name: review
url: ${{ steps.deploy.outputs.url }}
steps:
- uses: actions/checkout@v4
- id: deploy
uses: lewxdev/fly-pr-review-apps@main
with:
build_secrets: BASE_URL=https://${{ env.FLY_APP }}.fly.dev
secrets: |
BASE_URL=https://${{ env.FLY_APP }}.fly.dev
REDIS_URL=${{ secrets.REDIS_URL }}