From 77e50ab8c51ab0eee12d4a8bfee57674657e7bea Mon Sep 17 00:00:00 2001 From: Bruce Collie Date: Mon, 24 Jun 2024 09:32:12 +0100 Subject: [PATCH] Install missing prerequisites for Ubuntu package on release (#3958) This is a simple oversight on my part; I forgot to replicate this stanza from the test to the release job when making #3955. --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f74ec17f3..e9f021d72d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,6 +65,10 @@ jobs: with: submodules: recursive + - name: Install prerequisites + run: | + sudo apt install --yes debhelper z3 libsecp256k1-dev + - name: Cache Stack root uses: actions/cache@v4 with: