-
-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (35 loc) · 957 Bytes
/
generate-flake.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: generate flake
on:
push:
branches:
- main
pull_request:
jobs:
test-flake-generation:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Nix
uses: cachix/install-nix-action@v22
with:
nix_version: latest
extra_nix_config: |
experimental-features = nix-command flakes
- name: Test Flake Generation
run: |
if [ -f flake.nix ]; then
if ! command -v trash-cli &> /dev/null; then
rm flake.nix
else
trash-put flake.nix
fi
fi
nix eval --raw -f templates/flake.template.nix flake > flake.nix
- name: Verify Flake
run: |
if [ -f flake.nix ]; then
echo "flake.nix successfully generated"
else
echo "flake.nix generation failed" && exit 1
fi