From 98d4fe930af1475724b6e40761c0ae3cd1043fea Mon Sep 17 00:00:00 2001 From: Erik Reinert <4638629+erikreinert@users.noreply.github.com> Date: Sat, 13 Jul 2024 11:49:17 -0700 Subject: [PATCH] refactor(workflow): rename 'build' job to 'package' and update corresponding commands - Renamed the 'build' job to 'package' for better clarity. - Updated the command from 'just build' to 'just package' to reflect the job name change. --- .github/workflows/flake.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flake.yaml b/.github/workflows/flake.yaml index ca04d25..a40351a 100644 --- a/.github/workflows/flake.yaml +++ b/.github/workflows/flake.yaml @@ -28,7 +28,7 @@ jobs: - uses: actions/checkout@v4 - run: nix develop -c just check - build: + package: needs: - check strategy: @@ -49,4 +49,4 @@ jobs: authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} name: ${{ env.CACHIX_BINARY_CACHE }} - uses: actions/checkout@v4 - - run: nix develop -c just build "${{ matrix.profile }}" + - run: nix develop -c just package "${{ matrix.profile }}"