From 37b01824f1aa7d2162da804c1be77cf99025e24f Mon Sep 17 00:00:00 2001 From: "preetham.ntp" Date: Fri, 12 Jan 2024 13:15:33 +0530 Subject: [PATCH] add 32 bit build --- .github/workflows/automaticRelease.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/automaticRelease.yaml b/.github/workflows/automaticRelease.yaml index 07573c5..9ff7375 100644 --- a/.github/workflows/automaticRelease.yaml +++ b/.github/workflows/automaticRelease.yaml @@ -17,6 +17,15 @@ jobs: uses: actions/checkout@v3 - name: Build 64 bit version run: cargo build --target x86_64-pc-windows-msvc --release + - name: Build 32 bit version + run: cargo build --target i686-pc-windows-msvc --release + - name: create libmathcat32 + uses: thedoctor0/zip-release@0.7.5 + with: + type: 'zip' + filename: '../../../libmathcat32.zip' + directory: target/i686-pc-windows-msvc/release + path: libmathcat_c* - name: create libmathcat64 uses: thedoctor0/zip-release@0.7.5 with: