File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff 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 == ''
You can’t perform that action at this time.
0 commit comments