Skip to content

Update dependency astro to v4.15.1 #75

Update dependency astro to v4.15.1

Update dependency astro to v4.15.1 #75

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@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