mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-26 18:20:03 +00:00
91 lines
2.6 KiB
YAML
91 lines
2.6 KiB
YAML
name: Deploy Review App
|
|
on:
|
|
# Run this workflow on every PR event. Existing review apps will be updated when the PR is updated.
|
|
pull_request:
|
|
types: [opened, reopened, synchronize, closed]
|
|
|
|
env:
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
FLY_REGION: ams
|
|
FLY_ORG: personal
|
|
APP_NAME: pr-${{ github.event.pull_request.number }}-jasterv-spazio-solazzo
|
|
|
|
jobs:
|
|
ci:
|
|
if: github.event.action != 'closed'
|
|
uses: ./.github/workflows/ci.yml
|
|
secrets: inherit
|
|
|
|
build_and_deploy:
|
|
if: github.event.action != 'closed'
|
|
runs-on: ubuntu-latest
|
|
needs: ci
|
|
|
|
outputs:
|
|
url: ${{ steps.deploy.outputs.url }}
|
|
# Only run one deployment at a time per PR.
|
|
concurrency:
|
|
group: pr-${{ github.event.number }}
|
|
|
|
environment:
|
|
name: review
|
|
url: ${{ steps.deploy.outputs.url }}
|
|
|
|
steps:
|
|
- name: Get code
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Install flyctl CLI
|
|
uses: superfly/flyctl-actions/setup-flyctl@master
|
|
|
|
- name: Authenticate with Fly.io registry
|
|
run: flyctl auth docker
|
|
|
|
- name: Create Fly App before pushing docker image to registry
|
|
run: |
|
|
flyctl apps create ${{ env.APP_NAME }} --org ${{ env.FLY_ORG }} || true
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: registry.fly.io/${{ env.APP_NAME }}:sha-${{ github.sha }}
|
|
context: .
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Deploy PR app to Fly.io
|
|
id: deploy
|
|
uses: superfly/fly-pr-review-apps@1.5.0
|
|
with:
|
|
name: ${{ env.APP_NAME }}
|
|
config: fly.review.toml
|
|
secrets: |
|
|
TOKEN_SIGNING_SECRET=${{ secrets.TOKEN_SIGNING_SECRET }}
|
|
ADMIN_EMAIL=${{ secrets.ADMIN_EMAIL }}
|
|
SPAZIO_SOLAZZO_EMAIL=${{ secrets.SPAZIO_SOLAZZO_EMAIL }}
|
|
FRONT_OFFICE_PHONE_NUMBER=${{ secrets.FRONT_OFFICE_PHONE_NUMBER }}
|
|
RESEND_API_KEY=${{ secrets.RESEND_API_KEY }}
|
|
DATABASE_URL=${{ secrets.DATABASE_URL }}
|
|
SECRET_KEY_BASE=${{ secrets.SECRET_KEY_BASE }}
|
|
PHX_HOST=${{ env.APP_NAME }}.fly.dev
|
|
|
|
review_app_cleanup:
|
|
if: github.event.action == 'closed'
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
group: pr-${{ github.event.number }}
|
|
|
|
environment:
|
|
name: review
|
|
|
|
steps:
|
|
- name: Destroy PR app
|
|
uses: superfly/fly-pr-review-apps@1.5.0
|
|
with:
|
|
name: ${{ env.APP_NAME }}
|
|
config: fly.review.toml
|