Skip to content

Commit

Permalink
refactor(workflow): rename 'build' job to 'package' and update corres…
Browse files Browse the repository at this point in the history
…ponding 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.
  • Loading branch information
erikreinert committed Jul 13, 2024
1 parent 4a27a78 commit 98d4fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- run: nix develop -c just check

build:
package:
needs:
- check
strategy:
Expand All @@ -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 }}"

0 comments on commit 98d4fe9

Please sign in to comment.