We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b3c986 commit 25a52ffCopy full SHA for 25a52ff
.github/workflows/e2e-tests.yml
@@ -25,13 +25,17 @@ jobs:
25
26
- name: Install Supabase CLI
27
run: |
28
- # Remove any existing supabase binary
29
- rm -f supabase
+ # Create a temporary directory for extraction
+ mkdir -p /tmp/supabase-cli
30
+ cd /tmp/supabase-cli
31
# Download and extract
32
curl -fsSL https://github.com/supabase/cli/releases/download/v1.123.4/supabase_linux_amd64.tar.gz | tar -xz
33
# Make executable and move to system path
34
chmod +x supabase
35
sudo mv supabase /usr/local/bin/
36
+ # Clean up
37
+ cd /
38
+ rm -rf /tmp/supabase-cli
39
# Verify installation
40
supabase --version
41
0 commit comments