Skip to content

Commit d813aa6

Browse files
howyallarewez
authored andcommitted
Added 32-bit Windows build
Closes #6
1 parent fcd2d9e commit d813aa6

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/release.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,19 @@ jobs:
4343
zip AtomicParsleyLinux.zip AtomicParsley
4444
- name: zip
4545
if: runner.os == 'Windows'
46-
run: 7z a -tzip AtomicParsleyWindows.zip Release/AtomicParsley.exe
46+
run: |
47+
pushd Release
48+
7z a -tzip ../AtomicParsleyWindows.zip AtomicParsley.exe
49+
popd
50+
- name: build-windows-x86
51+
if: runner.os == 'Windows'
52+
run: |
53+
rm CMakeCache.txt
54+
cmake -S . -B build-windows-x86 -A Win32
55+
cmake --build build-windows-x86 --config Release
56+
pushd build-windows-x86/Release
57+
7z a -tzip ../../AtomicParsleyWindowsX86.zip AtomicParsley.exe
58+
popd
4759
- name: "Upload to Tagged Release"
4860
uses: softprops/action-gh-release@v1
4961
with:

0 commit comments

Comments
 (0)