Skip to content

Commit 75ac425

Browse files
committed
Fix if condition
1 parent 74ba422 commit 75ac425

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_all_apps.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,28 +62,28 @@ jobs:
6262
path: sdk
6363
ref: ${{ inputs.sdk_branch }}
6464
- name: Build App for Nano X
65-
if: contains(${{ matrix.apps.devices }}, nanox)
65+
if: contains(matrix.apps.devices, 'nanox')
6666
run: |
6767
cd ${{ matrix.apps.app-name }}/${{ matrix.apps.build-directory }}
6868
echo "Building for Nano X"
6969
make clean
7070
make -j TARGET=nanox BOLOS_SDK=$GITHUB_WORKSPACE/sdk
7171
- name: Build App for Nano S+
72-
if: contains(${{ matrix.apps.devices }}, nanos+)
72+
if: contains(matrix.apps.devices, 'nanos+')
7373
run: |
7474
cd ${{ matrix.apps.app-name }}/${{ matrix.apps.build-directory }}
7575
echo "Building for Nano S+"
7676
make clean
7777
make -j TARGET=nanos2 BOLOS_SDK=$GITHUB_WORKSPACE/sdk
7878
- name: Build App for Stax
79-
if: contains(${{ matrix.apps.devices }}, stax)
79+
if: contains(matrix.apps.devices, 'stax')
8080
run: |
8181
cd ${{ matrix.apps.app-name }}/${{ matrix.apps.build-directory }}
8282
echo "Building for Stax"
8383
make clean
8484
make -j TARGET=stax BOLOS_SDK=$GITHUB_WORKSPACE/sdk
8585
- name: Build App for Flex
86-
if: contains(${{ matrix.apps.devices }}, flex)
86+
if: contains(matrix.apps.devices, 'flex')
8787
run: |
8888
cd ${{ matrix.apps.app-name }}/${{ matrix.apps.build-directory }}
8989
echo "Building for Flex"

0 commit comments

Comments
 (0)