diff --git a/.github/workflows/intel-cmake.yml b/.github/workflows/intel-cmake.yml index 1d95a532c..1790a2022 100644 --- a/.github/workflows/intel-cmake.yml +++ b/.github/workflows/intel-cmake.yml @@ -97,15 +97,15 @@ jobs: CXX: ${{ steps.setup-fortran.outputs.cxx }} run: | mkdir "${{ runner.workspace }}/build" - Set-Location -Path "${{ runner.workspace }}\\build" - cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \ + Set-Location -Path "${{ runner.workspace }}\build" + cmake -C $env:GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \ -G Ninja \ -DCMAKE_BUILD_TYPE=${{ inputs.build_mode }} \ -DHDF4_BUILD_FORTRAN=OFF \ -DJPEG_USE_LOCALCONTENT=OFF \ -DLIBAEC_USE_LOCALCONTENT=OFF \ -DZLIB_USE_LOCALCONTENT=OFF \ - $GITHUB_WORKSPACE + $env:GITHUB_WORKSPACE - name: CMake Build (Windows) shell: pwsh