Add target installation step to release build workflow

This commit is contained in:
elipeter 2025-06-24 22:05:46 +02:00
parent 4bb61aba8b
commit 95b934ad39

View file

@ -26,6 +26,9 @@ jobs:
with:
toolchain: stable
cache: true
- name: Install target
run: rustup target add ${{ matrix.target }}
- name: Build (optimized)
run: cargo build --release --target ${{ matrix.target }}