From 870c0d5f383b4f316f3902ab034cab4f8555b58a Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Tue, 21 Nov 2023 21:21:59 +1100 Subject: [PATCH] install gettext in deploy script --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 377b1148..14c601ce 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,11 @@ jobs: with: python-version: 3.9 - - name: Install Dependencies + - name: Install Dev Dependencies + run: | + apt-get install gettext + + - name: Install Python Dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt