Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,14 @@ jobs:
run: bun install
- name: Install Supabase CLI
uses: supabase/setup-cli@v2.0.0
# Pinned to 2.98.2 because Supabase CLI v2.99.0 (2026-05-18) ships
# release assets with version in the filename (supabase_2.99.0_linux_amd64.tar.gz)
# while setup-cli@v2.0.0 hardcodes the unversioned name
# (supabase_linux_amd64.tar.gz) for any version >= 1.28.0, causing 404.
# Revert to `latest` once setup-cli ships a fix or Supabase restores
# the unversioned assets. Tracking: https://github.com/supabase/setup-cli
with:
version: latest
version: 2.98.2
- name: Show Supabase CLI version
run: supabase --version
- name: Prepare Supabase
Expand Down
Loading