From 4ea7be360fa1c92565111cc5b6e93eb3220019b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kau=C3=AA=20Fraga=20Rodrigues?= <88486000+kauefraga@users.noreply.github.com> Date: Sat, 4 May 2024 12:39:54 -0300 Subject: [PATCH] fix: name each matrix os properly --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 474eab0..466def8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,16 +24,16 @@ jobs: matrix: include: - name: linux-amd64 - runner: ubuntu-latest + os: ubuntu-latest target: x86_64-unknown-linux-gnu - name: win-amd64 - runner: windows-latest + os: windows-latest target: x86_64-pc-windows-msvc - name: macos-amd64 - runner: macos-latest + os: macos-latest target: x86_64-apple-darwin - name: macos-arm64 - runner: macos-latest + os: macos-latest target: aarch64-apple-darwin runs-on: ${{ matrix.os }} steps: