From bd9ece298b321305da2ca96aadb37a0ed5a7531a Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 25 Dec 2024 19:36:58 +0530 Subject: [PATCH] chore(actions): make matrix `job-name`s be consistent with release workflow --- .github/workflows/debug.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 606b948..91b4127 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -30,22 +30,22 @@ jobs: strategy: matrix: include: - - job-name: Windows x86_64 + - job-name: windows-x86_64 target: x86_64-pc-windows-msvc runs-on: windows-latest artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-windows-x86_64 - - job-name: Linux x86_64 + - job-name: linux-x86_64 target: x86_64-unknown-linux-gnu runs-on: ubuntu-latest artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-linux-x86_64 - - job-name: macOS x86_64 + - job-name: macos-x86_64 target: x86_64-apple-darwin runs-on: macos-13 artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-macos-x86_64 - - job-name: macOS aarch64 + - job-name: macos-aarch64 target: aarch64-apple-darwin runs-on: macos-latest artifact-name: pesde-debug-${{ needs.get-version.outputs.version }}-macos-aarch64