Skip to content

Commit 5a3e622

Browse files
committed
fix linux builds not going into nightly release
1 parent f1c2884 commit 5a3e622

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,14 @@ jobs:
113113
git config --global --add safe.directory `pwd`/libs/pyunrealsdk
114114
git config --global --add safe.directory `pwd`/libs/pyunrealsdk/libs/unrealsdk
115115
116+
set -e
117+
116118
cmake . --preset ${{ matrix.toolchain.preset }} -G Ninja
117119
cmake --build out/build/${{ matrix.toolchain.preset }} --target install
118120
119-
[ ${{ inputs.new-release-tag == '' && 1 || 0 }} -ne 0 ] \
120-
&& python prepare_release.py ${{ matrix.toolchain.preset }} --skip-install --no-bl3 --no-wl --unified \
121-
|| true
121+
if [ ${{ inputs.new-release-tag == '' && 1 || 0 }} -ne 0 ]; then
122+
python prepare_release.py ${{ matrix.toolchain.preset }} --skip-install
123+
fi
122124
123125
- name: Upload Artifact
124126
if: inputs.new-release-tag == ''

0 commit comments

Comments
 (0)