Skip to content

Commit

Permalink
Added 32-bit Windows build
Browse files Browse the repository at this point in the history
Closes #6
  • Loading branch information
howyallare authored and wez committed Dec 30, 2022
1 parent fcd2d9e commit d813aa6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,19 @@ jobs:
zip AtomicParsleyLinux.zip AtomicParsley
- name: zip
if: runner.os == 'Windows'
run: 7z a -tzip AtomicParsleyWindows.zip Release/AtomicParsley.exe
run: |
pushd Release
7z a -tzip ../AtomicParsleyWindows.zip AtomicParsley.exe
popd
- name: build-windows-x86
if: runner.os == 'Windows'
run: |
rm CMakeCache.txt
cmake -S . -B build-windows-x86 -A Win32
cmake --build build-windows-x86 --config Release
pushd build-windows-x86/Release
7z a -tzip ../../AtomicParsleyWindowsX86.zip AtomicParsley.exe
popd
- name: "Upload to Tagged Release"
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit d813aa6

Please sign in to comment.