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
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
permissions:
contents: write
- needs: [build-win32]
+ needs: [build-win32, build-win64]
steps:
- name: Checkout