mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 22:26:00 +01:00
15 lines
358 B
YAML
15 lines
358 B
YAML
name: Nix
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
wlroots:
|
|
if: github.event_name != 'pull_request'
|
|
uses: ./.github/workflows/nix-update-wlroots.yml
|
|
secrets: inherit
|
|
|
|
build:
|
|
if: always() && !cancelled() && !contains(needs.*.result, 'failure')
|
|
needs: wlroots
|
|
uses: ./.github/workflows/nix-build.yml
|
|
secrets: inherit
|