Skip to content

Commit

Permalink
wip: build: investigate different OpenSSL versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Jul 19, 2024
1 parent 1b570b3 commit 15cc52c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,6 @@ jobs:
curl -Lo OpenSSL.exe "https://github.com/Bionus/imgbrd-grabber/releases/download/sources-master/Win64OpenSSL-3_1_4.exe" --fail
OpenSSL.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /DIR="%OPENSSL_ROOT_DIR%"
rm OpenSSL.exe
dir %OPENSSL_ROOT_DIR%
dir %OPENSSL_ROOT_DIR%\bin
- name: Download MySQL driver
if: steps.vendor-cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -473,6 +471,8 @@ jobs:
- name: Generate installer
shell: cmd
run: |
dir %OPENSSL_ROOT_DIR%
dir %OPENSSL_ROOT_DIR%\bin
copy /Y "%MYSQL_DRIVER_DIR%\sqldrivers\*.dll" "%Qt6_Dir%\plugins\sqldrivers"
iscc /Q ^
/DMyAppVersion="%GRABBER_VERSION%" ^
Expand All @@ -492,7 +492,10 @@ jobs:

- name: Generate package
shell: cmd
run: scripts\package-windows.bat && mv Grabber.zip Grabber_x64.zip
run: |
dir %OPENSSL_ROOT_DIR%
dir %OPENSSL_ROOT_DIR%\bin
scripts\package-windows.bat && mv Grabber.zip Grabber_x64.zip
- name: Upload package
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 15cc52c

Please sign in to comment.