From 57bdb87a14b3ec4777ec3ed383fcedd60d8f6753 Mon Sep 17 00:00:00 2001 From: Matt Lehman Date: Fri, 13 Feb 2026 20:53:26 -0500 Subject: [PATCH] fix: explicitly install release matrix targets --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b53696c..f3fb125 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -169,6 +169,10 @@ jobs: toolchain: ${{ matrix.rust }} target: ${{ matrix.target }} + - name: Ensure target is installed + shell: bash + run: rustup target add ${{ matrix.target }} + - name: Use Cross if: matrix.os == 'ubuntu-latest' && matrix.target != '' shell: bash