From 18f47b3f223c76156f586f211d7e081269fbb18f Mon Sep 17 00:00:00 2001 From: xsmyile <84925446+davidetacchini@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:50:33 +0200 Subject: [PATCH] fix: include TUI subcommand in release binaries Remove --no-default-features from release build steps so the tui feature (enabled by default) is included in published binaries. Closes #9 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ffe384..c5478fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,11 +95,11 @@ jobs: - name: Build release binary (cross) if: matrix.cross - run: cross build --release --no-default-features --target ${{ matrix.target }} + run: cross build --release --target ${{ matrix.target }} - name: Build release binary (native) if: ${{ !matrix.cross }} - run: cargo build --release --no-default-features --target ${{ matrix.target }} + run: cargo build --release --target ${{ matrix.target }} - name: Upload artifact uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7