From 97b2419b4de2136b014c076f91076059135936a1 Mon Sep 17 00:00:00 2001 From: Nick Hudson Date: Wed, 16 Oct 2024 20:16:57 -0500 Subject: [PATCH] Ensure that wget is installed on builder (#157) --- .github/workflows/pg-image-build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pg-image-build.yml b/.github/workflows/pg-image-build.yml index 095a942..eec43cb 100644 --- a/.github/workflows/pg-image-build.yml +++ b/.github/workflows/pg-image-build.yml @@ -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 @@ -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 @@ -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