CI: fix typo on matrix platforms

This commit is contained in:
Fijxu 2025-05-15 15:28:14 -04:00
parent bef2d7b6b5
commit cef0097a30
No known key found for this signature in database
GPG Key ID: 32C1DDF333EDA6A4
2 changed files with 4 additions and 4 deletions

View File

@ -21,13 +21,13 @@ jobs:
matrix: matrix:
include: include:
- os: ubuntu-latest - os: ubuntu-latest
platforms: linux/amd64 platform: linux/amd64
name: "AMD64" name: "AMD64"
dockerfile: "docker/Dockerfile" dockerfile: "docker/Dockerfile"
tag_suffix: "" tag_suffix: ""
# GitHub doesn't has a ubuntu-latest-arm runner # GitHub doesn't has a ubuntu-latest-arm runner
- os: ubuntu-24.04-arm - os: ubuntu-24.04-arm
platforms: linux/arm64/v8 platform: linux/arm64/v8
name: "ARM64" name: "ARM64"
dockerfile: "docker/Dockerfile.arm64" dockerfile: "docker/Dockerfile.arm64"
tag_suffix: "-arm64" tag_suffix: "-arm64"

View File

@ -12,13 +12,13 @@ jobs:
matrix: matrix:
include: include:
- os: ubuntu-latest - os: ubuntu-latest
platforms: linux/amd64 platform: linux/amd64
name: "AMD64" name: "AMD64"
dockerfile: "docker/Dockerfile" dockerfile: "docker/Dockerfile"
tag_suffix: "" tag_suffix: ""
# GitHub doesn't has a ubuntu-latest-arm runner # GitHub doesn't has a ubuntu-latest-arm runner
- os: ubuntu-24.04-arm - os: ubuntu-24.04-arm
platforms: linux/arm64/v8 platform: linux/arm64/v8
name: "ARM64" name: "ARM64"
dockerfile: "docker/Dockerfile.arm64" dockerfile: "docker/Dockerfile.arm64"
tag_suffix: "-arm64" tag_suffix: "-arm64"