mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-06 00:35:58 +01:00
16 lines
438 B
YAML
16 lines
438 B
YAML
name: Build xdph (Nix)
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
jobs:
|
|
nix:
|
|
name: "Build"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: cachix/install-nix-action@v27
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
|
|
|
- name: Build xdg-desktop-portal-hyprland
|
|
run: nix build --print-build-logs --extra-substituters "https://hyprland.cachix.org"
|