Skip to content

Create LICENSE

Create LICENSE #70

Workflow file for this run

name: Deploy Migrations to Production
on:
push:
branches:
- main
workflow_dispatch:
# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-22.04
timeout-minutes: 10
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
SUPABASE_DB_PASSWORD: ${{ secrets.PRODUCTION_DB_PASSWORD }}
PRODUCTION_PROJECT_ID: weajrtbsntmezicrvolh
steps:
- uses: actions/checkout@v3
- uses: supabase/setup-cli@v1
with:
version: latest
- run: |
supabase link --project-ref $PRODUCTION_PROJECT_ID
supabase db push