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
7 changes: 5 additions & 2 deletions .github/workflows/deploy-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ jobs:
if: steps.check-secrets.outputs.skip == 'false'

# supabase/setup-cli@v1 still targets node20; keep FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 until they ship a node24 version
# Pinned to 2.98.2: v2.99.0 changed asset naming (added version in filename),
# breaking setup-cli@v1's download URL construction for `latest`.
- uses: supabase/setup-cli@v1
if: steps.check-secrets.outputs.skip == 'false'
with:
version: latest
version: 2.98.2

- name: Link staging project
if: steps.check-secrets.outputs.skip == 'false'
Expand Down Expand Up @@ -76,9 +78,10 @@ jobs:
- uses: actions/checkout@v6

# supabase/setup-cli@v1 still targets node20; keep FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 until they ship a node24 version
# Pinned to 2.98.2: v2.99.0 changed asset naming, breaking setup-cli@v1.
- uses: supabase/setup-cli@v1
with:
version: latest
version: 2.98.2

- name: Link Supabase project
run: supabase link --project-ref $SUPABASE_PROJECT_ID
Expand Down
Loading