fix not contains condition

This commit is contained in:
Kevin Pfeifer 2024-05-15 11:08:57 +00:00
parent 64e7270d09
commit 2b02e0d76a
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ jobs:
cp install_output/lib/libSDL3.so SDL3-CS/native/${{ matrix.platform.name }}/libSDL3.so cp install_output/lib/libSDL3.so SDL3-CS/native/${{ matrix.platform.name }}/libSDL3.so
- name: Build - name: Build
if: !contains(matrix.platform.container, 'arm') if: ${{ !contains(matrix.platform.container, 'arm') }}
run: | run: |
# Setup Linux dependencies # Setup Linux dependencies
if [[ ${{ matrix.platform.target_apt_arch }} == :i386 ]]; then if [[ ${{ matrix.platform.target_apt_arch }} == :i386 ]]; then