Skip to content

Commit c28f192

Browse files
authored
Tag is wrong (infra) (#1854)
* Make both tags a raw array * Try fromJson because array seems unsupported
1 parent 34eca49 commit c28f192

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/checkbox-daily-cross-builds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- release: 16
3434
arch: arm64
3535
# uc16 needs ubuntu20 because we need cgroup v1 to build it
36-
runs-on: ${{ matrix.release == 16 && '["self-hosted", "focal"]' || 'ubuntu-latest' }}
36+
runs-on: ${{ matrix.release == 16 && fromJson('["self-hosted", "focal"]') || 'ubuntu-latest' }}
3737
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
3838
name: Runtime ${{ matrix.release }} (${{ matrix.arch }})
3939
steps:
@@ -112,7 +112,7 @@ jobs:
112112
- release: 24
113113
arch: arm64
114114
# uc16 needs ubuntu20 because we need cgroup v1 to build it
115-
runs-on: ${{ matrix.release == 16 && '["self-hosted", "focal"]' || 'ubuntu-latest' }}
115+
runs-on: ${{ matrix.release == 16 && fromJson('["self-hosted", "focal"]') || 'ubuntu-latest' }}
116116
timeout-minutes: 1200 #20h, this will timeout sooner due to inner timeouts
117117
name: Frontend ${{ matrix.type }}${{ matrix.release }} (${{ matrix.arch }})
118118
steps:

0 commit comments

Comments
 (0)