diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 948143d..4a23b05 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,10 @@ jobs: uses: actions/checkout@v4 - name: Install packages run: sudo apt-get install nsis mingw-w64 + - name: Get OpenSSL + run: git clone https://github.com/clamwin/openssl + - name: Make it use the correct library + run: cp openssl/lib/mingw/x86/*.a openssl/lib/ - name: Build run: ./installer.sh win32 - name: Rename @@ -47,6 +51,10 @@ jobs: uses: actions/checkout@v4 - name: Install packages run: sudo apt-get install nsis mingw-w64 + - name: Get OpenSSL + run: git clone https://github.com/clamwin/openssl + - name: Make it use the correct library + run: cp openssl/lib/mingw/x64/*.a openssl/lib/ - name: Build run: ./installer.sh win64 - name: Rename @@ -66,7 +74,7 @@ jobs: permissions: contents: write - needs: [build-win32] + needs: [build-win32, build-win64] steps: - name: Checkout