diff options
author | Steven Fackler <sfackler@gmail.com> | 2020-11-17 21:08:59 -0500 |
---|---|---|
committer | Steven Fackler <sfackler@gmail.com> | 2020-11-17 21:08:59 -0500 |
commit | 22b6c07622c980b4a05e56184978b5f715506cc8 (patch) | |
tree | e39cb2093b961a6a9781d279af96a7f5c8572d79 /.github/workflows/ci.yml | |
parent | 661e24df2ed56292e37fdbccccdcd98d732922e8 (diff) | |
download | rust-openssl-22b6c07622c980b4a05e56184978b5f715506cc8.zip |
Fix vcpkg CI build
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bce85f5..f7f7e9b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,7 +104,7 @@ jobs: id: rust-version run: echo "::set-output name=version::$(rustc --version)" - name: Set vcpkg root - run: echo "::set-env name=VCPKG_ROOT::$Env:VCPKG_INSTALLATION_ROOT" + run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append - name: Install OpenSSL run: vcpkg install openssl:x64-windows - name: Cache cargo index |