CI: fix wrong if statement for build-docker job

This commit is contained in:
Fijxu 2025-09-02 10:16:05 -04:00
parent fd8dc93569
commit 90ee46716d
No known key found for this signature in database
GPG Key ID: 32C1DDF333EDA6A4

View File

@ -99,7 +99,7 @@ jobs:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- name: Use ARM64 Dockerfile if ARM64 - name: Use ARM64 Dockerfile if ARM64
if: ${{ matrix.name }} == "ARM64" if: ${{ matrix.name == 'ARM64' }}
run: sed -i 's/Dockerfile/Dockerfile.arm64/' docker-compose.yml run: sed -i 's/Dockerfile/Dockerfile.arm64/' docker-compose.yml
- name: Build Docker - name: Build Docker