diff options
author | Patrick Lewis <pat@lo5t.com> | 2021-09-16 18:58:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-16 18:58:11 -0700 |
commit | 772a168d6f4e1bdf4f52cda47fa5386295d00d4c (patch) | |
tree | cf68ef56be5b481d31bbefc5df72d78e5d55e0ba /.github | |
parent | 9fb1d155f987e4be7e56eab657bd59924994668b (diff) |
fix(CI): update mysql path for windows build (#7934)
* fix(CI): update mysql version for windows build
* fix(CI): temp change
* fix(CI): update
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/windows_build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 9ceb996904..98712fff29 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -34,7 +34,7 @@ jobs: - name: Copy dll files shell: bash run: | - cp "/c/mysql-5.7.21-winx64/lib/libmysql.dll" "build/bin/Release/" + cp "/c/mysql/lib/libmysql.dll" "build/bin/Release/" cp "/c/Program Files/OpenSSL-Win64/bin/libcrypto-1_1-x64.dll" "build/bin/Release/" cp "/c/Program Files/OpenSSL-Win64/bin/libssl-1_1-x64.dll" "build/bin/Release/" - uses: actions/upload-artifact@v2 |