Skip to content

Commit 1b33e18

Browse files
committed
Sample builder: fix condition for Windows/MacOS
1 parent 2fbb796 commit 1b33e18

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/sample-builder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,12 @@ jobs:
206206
echo "version=${_version}" >> "$GITHUB_OUTPUT"
207207
208208
- name: Build (Windows/MacOS)
209-
if: ${{ ! runner.os == 'Linux' }}
210-
shell: bash -el {0}
209+
if: runner.os != 'Linux'
211210
run: |
212211
pip install conan
213212
make deps
214-
make
213+
make luxcoreui
214+
make luxcoreconsole
215215
make package
216216
217217
# Build for Linux is containerized in manylinux_2_28_x86_64

0 commit comments

Comments
 (0)