Skip to content

Commit 1909373

Browse files
committed
fix devcontainer builds when doing new release
1 parent e58f08d commit 1909373

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,9 @@ jobs:
118118
cmake . --preset ${{ matrix.toolchain.preset }} -G Ninja
119119
cmake --build out/build/${{ matrix.toolchain.preset }} --target install
120120
121-
[ ${{ inputs.new-release-tag == '' && 1 || 0 }} -ne 0 ] && \
122-
python prepare_release.py ${{ matrix.toolchain.preset }} --skip-install --no-bl3 --no-wl --unified
121+
[ ${{ inputs.new-release-tag == '' && 1 || 0 }} -ne 0 ] \
122+
&& python prepare_release.py ${{ matrix.toolchain.preset }} --skip-install --no-bl3 --no-wl --unified \
123+
|| true
123124
124125
- name: Upload Artifact
125126
if: inputs.new-release-tag == ''

0 commit comments

Comments
 (0)