From 35fa93d9aad4ee36c29394ae7220a24cddd756ba Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 11 Oct 2021 17:57:57 +0200 Subject: [PATCH] ci: fix missing gettext Signed-off-by: Jens Langhammer --- .github/workflows/translation-compile.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/translation-compile.yml b/.github/workflows/translation-compile.yml index 2486a052b..4ac316141 100644 --- a/.github/workflows/translation-compile.yml +++ b/.github/workflows/translation-compile.yml @@ -29,8 +29,11 @@ jobs: - name: prepare env: INSTALL: ${{ steps.cache-pipenv.outputs.cache-hit }} - run: scripts/ci_prepare.sh - - name: run pylint + run: | + sudo apt-get update + sudo apt-get install -y gettext + scripts/ci_prepare.sh + - name: run compile run: pipenv run ./manage.py compilemessages - name: Create Pull Request uses: peter-evans/create-pull-request@v3