Skip to content

Commit e89a1ac

Browse files
committed
ci: supabase deploy fix
1 parent 08b8292 commit e89a1ac

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ jobs:
1414
- uses: actions/checkout@v4
1515

1616
- uses: supabase/setup-cli@v1
17+
with:
18+
version: latest
19+
20+
- name: 'Supabase - Remote Connect'
1721
env:
1822
PROJECT_ID: ${{ secrets.SUPABASE_PROJECT_ID }}
1923
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
2024
SUPABASE_DB_PASSWORD: ${{ secrets.SUPABASE_DB_PASSWORD }}
21-
with:
22-
version: latest
23-
24-
- run: supabase link --project-ref $PROJECT_ID
25-
- run: supabase db push
26-
- run: supabase functions deploy
25+
shell: bash
26+
run: |
27+
supabase link --project-ref $PROJECT_ID
28+
supabase db push
29+
supabase functions deploy

0 commit comments

Comments
 (0)