From c06626663ec71bb3957e9311404c4a1d9c31d210 Mon Sep 17 00:00:00 2001 From: Keval Kapdee Date: Thu, 28 Mar 2024 16:13:49 +0000 Subject: [PATCH] Default features and install apt --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b7abb8..c98dc19 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,10 @@ jobs: image: ghcr.io/archlinux/archlinux:base-devel strategy: matrix: - features: [arch, debian] + features: [default, arch, debian] steps: - - name: Install rust toolchain - run: pacman -Syy --noconfirm rust + - name: Install dependencies + run: pacman -Syy --noconfirm rust apt - uses: actions/checkout@master - name: Build run: cargo build --release --features ${{ matrix.features }}