aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/nix-ci.yml
blob: 75c19790fc6e8c708e29831cd8283b6f9a62c898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Nix (CI)

on: [push, pull_request, workflow_dispatch]

jobs:
  update-inputs:
    if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
    uses: ./.github/workflows/nix-update-inputs.yml
    secrets: inherit

  build:
    if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork)
    uses: ./.github/workflows/nix-build.yml
    secrets: inherit