diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 15:45:16 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 15:52:13 +0300 |
commit | 6e3ff5f7e837c0aa2affb23966ded375628e100f (patch) | |
tree | 05dca26357a17ec5595a718cafee3686db21b1df /.github/workflows/ci_github.yml | |
parent | project.cmake: fix "auto" platform detection (diff) | |
download | cmake-common-6e3ff5f7e837c0aa2affb23966ded375628e100f.tar.gz cmake-common-6e3ff5f7e837c0aa2affb23966ded375628e100f.zip |
project.ci: change build directory
It's now <source directory>/../build for consistency.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci_github.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci_github.yml b/.github/workflows/ci_github.yml index 877e885..91b1c96 100644 --- a/.github/workflows/ci_github.yml +++ b/.github/workflows/ci_github.yml @@ -59,7 +59,7 @@ jobs: - name: Run example project run: | - cd (Join-Path $env:GITHUB_WORKSPACE .. install bin) + cd "$env:GITHUB_WORKSPACE/../build/install/bin" $foo_path = Join-Path (Get-Location).Path foo if ('${{ runner.os }}' -eq 'Windows') { $foo_path += '.exe' |