mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 10:05:58 +01:00
28 lines
692 B
YAML
28 lines
692 B
YAML
name: Nix (Build)
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
CACHIX_AUTH_TOKEN:
|
|
required: false
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
package:
|
|
- hyprland
|
|
- hyprland-cross
|
|
- xdg-desktop-portal-hyprland
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
|
|
|
- uses: cachix/cachix-action@v15
|
|
with:
|
|
name: hyprland
|
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
|
|
|
- run: nix build 'github:hyprwm/Hyprland?ref=${{ github.ref }}#${{ matrix.package }}' -L --extra-substituters "https://hyprland.cachix.org"
|