mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 17:05:58 +01:00
f3c92e75c8
DeterminateSystems/nix-installer-action is causing hash inconsistency between CI & local build.
29 lines
647 B
YAML
29 lines
647 B
YAML
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 }}
|
|
|
|
- uses: cachix/install-nix-action@v25
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: hyprland
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
- run: nix build .#${{ matrix.package }} -L
|