From 80094431b9e51528902a20af88cd55032cf4c58a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20K=C3=BChnel?= Date: Tue, 15 Mar 2022 12:55:40 +0100 Subject: [PATCH] fix(versionRelease): update matrix name for armv7 --- .github/workflows/versionRelease.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/versionRelease.yml b/.github/workflows/versionRelease.yml index e34cb66ae..08bc9a804 100644 --- a/.github/workflows/versionRelease.yml +++ b/.github/workflows/versionRelease.yml @@ -8,7 +8,7 @@ jobs: name: Release strategy: matrix: - kind: ['linux-x64', 'linux-arm64', 'linux/arm/v7'] + kind: ['linux-x64', 'linux-arm64', 'linux-arm'] include: - kind: linux-x64 os: ubuntu-latest @@ -16,7 +16,7 @@ jobs: - kind: linux-arm64 os: ubuntu-latest target: linux-arm64 - - kind: linux/arm/v7 + - kind: linux-arm os: ubuntu-latest target: linux/arm/v7 runs-on: ${{ matrix.os }}