Hyprland/.github/workflows/nix-ci.yml

20 lines
496 B
YAML
Raw Normal View History

2023-09-10 20:51:13 +02:00
name: Nix
on: [push, pull_request, workflow_dispatch]
2024-07-27 20:29:49 +02:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2023-09-10 20:51:13 +02:00
jobs:
update-inputs:
2024-07-27 20:29:49 +02:00
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
uses: ./.github/workflows/nix-update-inputs.yml
2023-09-10 20:51:13 +02:00
secrets: inherit
build:
2024-07-27 20:29:49 +02:00
if: always() && !cancelled() && !contains(needs.*.result, 'failure')
needs: update-inputs
2023-09-10 20:51:13 +02:00
uses: ./.github/workflows/nix-build.yml
secrets: inherit