mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 15:35:58 +01:00
21 lines
593 B
YAML
21 lines
593 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
|
|
with:
|
|
submodules: recursive
|
|
- name: Install nix
|
|
uses: cachix/install-nix-action@v17
|
|
with:
|
|
install_url: https://releases.nixos.org/nix/nix-2.10.3/install
|
|
extra_nix_config: |
|
|
auto-optimise-store = true
|
|
experimental-features = nix-command flakes
|
|
- name: Build xdg-desktop-portal-hyprland
|
|
run: nix build --print-build-logs
|