From cfd24b226a473c0eddb4241048200bfdf2164485 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sun, 20 Dec 2020 16:57:32 +0100 Subject: [PATCH] ci: gh-actions: mingw: attempt to fix path --- .github/workflows/cmake-build-ci.gen | 6 +++--- .github/workflows/cmake-build-ci.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake-build-ci.gen b/.github/workflows/cmake-build-ci.gen index 657c8b07..62523471 100755 --- a/.github/workflows/cmake-build-ci.gen +++ b/.github/workflows/cmake-build-ci.gen @@ -413,9 +413,9 @@ jobs: git - name: Prepare environment (for mingw on Windows) run: | - echo "\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - + echo "c:\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "c:\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + # linux release builds release: diff --git a/.github/workflows/cmake-build-ci.yml b/.github/workflows/cmake-build-ci.yml index c3d78847..70074fd6 100644 --- a/.github/workflows/cmake-build-ci.yml +++ b/.github/workflows/cmake-build-ci.yml @@ -635,9 +635,9 @@ jobs: git - name: Prepare environment (for mingw on Windows) run: | - echo "\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - - name: Install dependencies (Linux) + echo "c:\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "c:\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + - name: Install dependencies (Linux) if: runner.os == 'Linux' run: | sudo apt-get install -my \ -- 2.30.2