Skip to content

added initial migration #4

added initial migration

added initial migration #4

Workflow file for this run

name: Fly Deploy to Canary
on:
push:
branches:
- canary
workflow_dispatch: {}
jobs:
deploy:
name: Deploy app to canary
environment: Fly Canary
runs-on: ubuntu-latest
concurrency: deploy-group
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only -c fly.canary.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}