Skip to content

Commit

Permalink
fix: toml config causing supabase deploy to fail (#4085)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariojsnunes authored Jan 17, 2025
1 parent 5de0ba2 commit 0166573
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ jobs:
- checkout
- attach_workspace:
at: '.'
- run: npx supabase@2.3.0 login --token $SUPABASE_ACCESS_TOKEN
- run: (yes || true) | npx supabase@2.3.0 db push --db-url $SUPABASE_DB_URL --debug
- run: npx supabase@2.6.8 login --token $SUPABASE_ACCESS_TOKEN
- run: (yes || true) | npx supabase@2.6.8 db push --db-url $SUPABASE_DB_URL --debug
# Run cypress e2e tests on chrome
test_e2e:
docker: *docker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-preview-fly-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Install supabase CLI
uses: supabase/setup-cli@v1
with:
version: 2.2.1
version: 2.6.8

- name: Link Supabase project
run: supabase link --project-ref $SUPABASE_PROJECT_ID
Expand Down
2 changes: 1 addition & 1 deletion supabase/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ verify_enabled = true
# Use an external OAuth provider. The full list of providers are: `apple`, `azure`, `bitbucket`,
# `discord`, `facebook`, `github`, `gitlab`, `google`, `keycloak`, `linkedin_oidc`, `notion`, `twitch`,
# `twitter`, `slack`, `spotify`, `workos`, `zoom`.
# [auth.external.apple]
[auth.external.apple]
enabled = false
client_id = ""
# DO NOT commit your OAuth provider secret to git. Use environment variable substitution instead:
Expand Down

0 comments on commit 0166573

Please sign in to comment.