diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-08-19 07:18:09 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-08-19 07:19:19 +0200 |
commit | 1b470b9036639cef4f32fb303bb35ea0b711178d (patch) | |
tree | bb7ac2714e281285316483933ee88987e5755935 | |
parent | Add a bit more debug output. (diff) | |
download | openssh-1b470b9036639cef4f32fb303bb35ea0b711178d.tar.xz openssh-1b470b9036639cef4f32fb303bb35ea0b711178d.zip |
Fix cygwin conditional steps.
-rw-r--r-- | .github/workflows/c-cpp.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 03d6a5190..2c5301eda 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -80,10 +80,10 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: set cygwin git params - if: ${{ matrix.configs }} == 'windows-2019' + if: ${{ matrix.configs == 'windows-2019' }} run: git config --global core.autocrlf input - name: install cygwin - if: ${{ matrix.configs }} == 'windows-2019' + if: ${{ matrix.configs == 'windows-2019' }} uses: cygwin/cygwin-install-action@master with: packages: autoconf, automake, cygwin-devel, gcc-core, make, openssl-devel, zlib-devel |