2024-08-31 12:51:19 +02:00
|
|
|
name: Nix (CI)
|
2023-09-10 20:51:13 +02:00
|
|
|
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
|
|
|
|
jobs:
|
2024-04-21 19:13:59 +02:00
|
|
|
update-inputs:
|
2024-08-31 12:51:19 +02:00
|
|
|
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
|
2024-04-21 19:13:59 +02:00
|
|
|
uses: ./.github/workflows/nix-update-inputs.yml
|
2023-09-10 20:51:13 +02:00
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
build:
|
2024-09-08 20:20:45 +02:00
|
|
|
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork)
|
2023-09-10 20:51:13 +02:00
|
|
|
uses: ./.github/workflows/nix-build.yml
|
|
|
|
secrets: inherit
|