From 199ab04eb7cfe121bdfdf2576346a64a9fb68cbf Mon Sep 17 00:00:00 2001 From: Boudjada Yasser Date: Thu, 11 Jul 2024 01:28:33 +0100 Subject: [PATCH] Update python-app-on-mac.yml Signed-off-by: Boudjada Yasser --- .github/workflows/python-app-on-mac.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-app-on-mac.yml b/.github/workflows/python-app-on-mac.yml index c5d2fbe2..aa31beb7 100644 --- a/.github/workflows/python-app-on-mac.yml +++ b/.github/workflows/python-app-on-mac.yml @@ -18,7 +18,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install gettext - run: brew install gettext + run: | + brew install gettext + echo 'export PATH="/usr/local/opt/gettext/bin:$PATH"' >> $HOME/.bash_profile + echo 'export LDFLAGS="-L/usr/local/opt/gettext/lib"' >> $HOME/.bash_profile + echo 'export CPPFLAGS="-I/usr/local/opt/gettext/include"' >> $HOME/.bash_profile + source $HOME/.bash_profile - name: Set up Python ${{matrix.python-version}} uses: actions/setup-python@v4 with: