Skip to content

Commit

Permalink
fix windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen Nijhuis committed Dec 21, 2023
1 parent 4075a87 commit f8d1b49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
if: matrix.platform == 'windows-latest'
run: |
choco install openssl
mkdir -p C:\Program Files\OpenSSL\ca
curl -o C:\Program Files\OpenSSL\ca\cacert.pem https://curl.se/ca/cacert.pem
set OPENSSL_DIR=C:\Program Files\OpenSSL
set SSL_CERT_FILE=C:\Program Files\OpenSSL\ca\cacert.pem
mkdir -p "C:\Program Files\OpenSSL\ca"
curl -o "C:\Program Files\OpenSSL\ca\cacert.pem" https://curl.se/ca/cacert.pem
set OPENSSL_DIR="C:\Program Files\OpenSSL"
set SSL_CERT_FILE="C:\Program Files\OpenSSL\ca\cacert.pem"
- name: Build Vite + Tauri
run: npm run build

0 comments on commit f8d1b49

Please sign in to comment.