From dfb36f49a4eb12b38b27857a7662e0c713878696 Mon Sep 17 00:00:00 2001 From: jpsantos1 <88748637+jpsantos1@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:42:30 -0300 Subject: [PATCH] Limit release pipeline to ARM builds --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ab588465..b10bc0bd9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Release +name: Release ARM on: push: @@ -14,10 +14,8 @@ jobs: strategy: matrix: runtime: - - linux-x64 - - linux-arm64 - linux-arm - - win-x64 + - linux-arm64 steps: @@ -31,7 +29,7 @@ jobs: - name: Publish run: | - dotnet publish src/ErsatzTV/ErsatzTV.csproj \ + dotnet publish ErsatzTV/ErsatzTV.csproj \ -c Release \ -r ${{ matrix.runtime }} \ --self-contained true \