From fbd7bd2abd71e08b3cbda11db96adc9532928190 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sat, 21 Feb 2026 01:10:30 +0100 Subject: [PATCH] workflows/check-deploy: Improve naming of jobs --- .github/workflows/check-deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-deploy.yml b/.github/workflows/check-deploy.yml index 11c4e20..0bc83aa 100644 --- a/.github/workflows/check-deploy.yml +++ b/.github/workflows/check-deploy.yml @@ -4,7 +4,7 @@ on: push: branches: [main] jobs: - generate-matrix: + parse-flake: runs-on: ubuntu-latest outputs: checks: ${{ steps.checks.outputs.checks }} @@ -23,12 +23,12 @@ jobs: hosts=$(nix flake show --json | jq -c '.nixosConfigurations | keys') printf "hosts=%s" "$hosts" >> "$GITHUB_OUTPUT" build-check: - needs: generate-matrix + needs: parse-flake runs-on: ubuntu-latest strategy: fail-fast: false matrix: - check: ${{ fromJson(needs.generate-matrix.outputs.checks) }} + check: ${{ fromJson(needs.parse-flake.outputs.checks) }} steps: - uses: actions/checkout@v5 - uses: cachix/install-nix-action@v31 @@ -41,12 +41,12 @@ jobs: useDaemon: false - run: nix build .#checks.x86_64-linux.${{ matrix.check }} --print-build-logs build-host: - needs: generate-matrix + needs: parse-flake runs-on: ubuntu-latest strategy: fail-fast: false matrix: - host: ${{ fromJson(needs.generate-matrix.outputs.hosts) }} + host: ${{ fromJson(needs.parse-flake.outputs.hosts) }} steps: - uses: actions/checkout@v5 - uses: cachix/install-nix-action@v31