From f8e887830a3ced862b16449221cb02299c43aeb1 Mon Sep 17 00:00:00 2001 From: sharnoff Date: Tue, 17 Jan 2023 09:38:33 +0000 Subject: [PATCH] build: Use `curl -f` on vm-informant download (#3363) Without this, we can silently fail --- .github/workflows/build_and_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 65a60884da..918e568e27 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -610,7 +610,7 @@ jobs: - name: Downloading VM informant version ${{ env.VM_INFORMANT_VERSION }} run: | - curl -L https://github.com/neondatabase/autoscaling/releases/download/${{ env.VM_INFORMANT_VERSION }}/vm-informant -o vm-informant + curl -fL https://github.com/neondatabase/autoscaling/releases/download/${{ env.VM_INFORMANT_VERSION }}/vm-informant -o vm-informant chmod +x vm-informant - name: Adding VM informant to compute-node image