2023-09-10 20:51:13 +02:00
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
secrets:
|
|
|
|
CACHIX_AUTH_TOKEN:
|
|
|
|
required: false
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
package:
|
|
|
|
- hyprland
|
|
|
|
- xdg-desktop-portal-hyprland
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
|
|
|
|
2024-03-04 19:33:42 +01:00
|
|
|
- uses: cachix/install-nix-action@v25
|
2023-09-13 18:06:49 +02:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2023-09-10 20:51:13 +02:00
|
|
|
- uses: cachix/cachix-action@v12
|
|
|
|
with:
|
|
|
|
name: hyprland
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
|
2024-04-22 22:58:27 +02:00
|
|
|
- run: nix build .#${{ matrix.package }} --extra-substituters "https://hyprland.cachix.org" -L
|