From a388e9cc778423b8b59945e0ac9aa89cb016b7d3 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sun, 29 Jun 2025 20:15:00 -0400 Subject: [PATCH] Add MSYS2 bin to PATH on Windows --- .github/workflows/python-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 2fe3afb..397ac20 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -40,6 +40,10 @@ jobs: if: runner.os == 'Windows' shell: bash run: echo "PKG_CONFIG_PATH=${{ steps.msys.outputs.msys2-location }}/mingw64/lib/pkgconfig" >> $GITHUB_ENV + - name: Add MSYS2 tools to PATH + if: runner.os == 'Windows' + shell: bash + run: echo "${{ steps.msys.outputs.msys2-location }}/mingw64/bin" >> $GITHUB_PATH - name: Cache pip uses: actions/cache@v3 with: