mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 21:25:58 +01:00
a8ab1b1679
* scripts: allow using existing variable values in generateVersion.sh * nix: populate versioning variables * nix: remove unused meson input * nix: remove unnecessary hyprland-protocols dependency * Nix: remove nixConfig from flake It's more annoying than helpful. * CI/Nix: fix PR build failure --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
15 lines
405 B
YAML
15 lines
405 B
YAML
name: Nix
|
|
|
|
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: always() && !cancelled() && !contains(needs.*.result, 'failure')
|
|
needs: update-inputs
|
|
uses: ./.github/workflows/nix-build.yml
|
|
secrets: inherit
|