Skip to content

Link cohort members to existing users when added by email (#378) #117

Link cohort members to existing users when added by email (#378)

Link cohort members to existing users when added by email (#378) #117

Workflow file for this run

name: Fly Deploy
on:
push:
branches:
- main
paths:
- "schema/**"
- "backend/**"
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@1.5
- run: flyctl deploy --remote-only --config backend/fly.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
- run: flyctl deploy --remote-only --config backend/fly.staging.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}