Skip to content

Commit

Permalink
Ensure that wget is installed on builder (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhudson authored Oct 17, 2024
1 parent 9812efa commit 97b2419
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pg-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
shell: bash
run: |
set -xe
sudo apt-get update
sudo apt-get install -y wget
wget https://github.com/freshautomations/stoml/releases/download/v0.7.1/stoml_linux_amd64 &> /dev/null
mv stoml_linux_amd64 stoml
chmod +x stoml
Expand Down Expand Up @@ -94,6 +96,8 @@ jobs:
shell: bash
run: |
set -xe
sudo apt-get update
sudo apt-get install -y wget
wget https://github.com/freshautomations/stoml/releases/download/v0.7.1/stoml_linux_armv7 &> /dev/null
mv stoml_linux_armv7 stoml
chmod +x stoml
Expand Down Expand Up @@ -164,6 +168,8 @@ jobs:
shell: bash
run: |
set -xe
sudo apt-get update
sudo apt-get install -y wget
wget https://github.com/freshautomations/stoml/releases/download/v0.7.1/stoml_linux_amd64 &> /dev/null
mv stoml_linux_amd64 stoml
chmod +x stoml
Expand Down

0 comments on commit 97b2419

Please sign in to comment.