Skip to content

Update dependency prettier to v3.4.1 (#117) #123

Update dependency prettier to v3.4.1 (#117)

Update dependency prettier to v3.4.1 (#117) #123

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SB_ACCESS_TOKEN }}
SUPABASE_DB_PASSWORD: ${{ secrets.SB_DB_PASSWORD }}
PROJECT_ID: ${{ secrets.SB_PROJECT_ID }}
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- uses: supabase/setup-cli@v1
with:
version: latest
- name: Run Database Migrations
run: |
supabase link --project-ref $PROJECT_ID
supabase db push
- name: Deploy
run: supabase functions deploy --project-ref $PROJECT_ID --debug