Skip to content

Commit 94b480b

Browse files
authored
Merge pull request #606 from supabase/rs/install-wget-in-ci
fix: install wget in ci if missing
2 parents 37ad500 + 9ef007c commit 94b480b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555

5656
- name: build release artifacts
5757
run: |
58+
# Install wget if missing
59+
sudo apt-get update
60+
sudo apt-get install -y wget
61+
5862
# Add postgres package repo
5963
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
6064
wget -qO- https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo tee /etc/apt/trusted.gpg.d/pgdg.asc &>/dev/null

0 commit comments

Comments
 (0)