From 0db15511c596da22779d974155fb814b5cbfc537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 27 Nov 2024 15:24:35 +0100 Subject: [PATCH] fix gh action matrix --- .github/workflows/pre-release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index cff42775..8e86ffa1 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -9,7 +9,6 @@ jobs: strategy: fail-fast: false matrix: - feature: [full, minimal] include: - target: aarch64-darwin os: macos-14 @@ -46,11 +45,11 @@ jobs: authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} extraPullNames: nix-community - name: Build release - run: nix build .#cross-${{ matrix.target }}${{ matrix.feature == 'minimal' && '-minimal' || '' }} + run: nix build .#cross-${{ matrix.target }}-minimal - name: Upload release uses: actions/upload-artifact@v4 with: - name: himalaya${{ matrix.feature == 'minimal' && '-minimal' || '' }}-${{ matrix.target }} + name: himalaya-minimal-${{ matrix.target }} path: result/bin/himalaya* - name: Upload share folder uses: actions/upload-artifact@v4