Skip to content

Commit 89c8b1b

Browse files
authored
CI: fix wrong if statement for build-docker job (#5442)
1 parent fd8dc93 commit 89c8b1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- uses: actions/checkout@v5
100100

101101
- name: Use ARM64 Dockerfile if ARM64
102-
if: ${{ matrix.name }} == "ARM64"
102+
if: ${{ matrix.name == 'ARM64' }}
103103
run: sed -i 's/Dockerfile/Dockerfile.arm64/' docker-compose.yml
104104

105105
- name: Build Docker

0 commit comments

Comments
 (0)