Compare commits
6 commits
85c3b4e023
...
f4efd87aa5
| Author | SHA1 | Date | |
|---|---|---|---|
|
f4efd87aa5 |
|||
|
5d44bc6075 |
|||
|
5f5e113c00 |
|||
|
487e9e19e7 |
|||
|
672d33f33d |
|||
|
2fd0bfdc6b |
1 changed files with 5 additions and 11 deletions
16
.github/workflows/kiosk-iso.yml
vendored
16
.github/workflows/kiosk-iso.yml
vendored
|
|
@ -2,38 +2,32 @@ name: Build NixOS Kiosk ISO
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ profile-install ]
|
branches: [ main, profile-install ]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
flake-check:
|
flake-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: nixos/nix:2.33.0
|
||||||
env:
|
env:
|
||||||
NIX_CONFIG: extra-experimental-features = nix-command flakes
|
NIX_CONFIG: extra-experimental-features = nix-command flakes
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Install Nix
|
|
||||||
run: |
|
|
||||||
curl -L https://nixos.org/nix/install | sh
|
|
||||||
. /home/runner/.nix-profile/etc/profile.d/nix.sh
|
|
||||||
nix --version
|
|
||||||
- name: Flake check
|
- name: Flake check
|
||||||
run: nix flake check -L
|
run: nix flake check -L
|
||||||
|
|
||||||
build-iso:
|
build-iso:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [ flake-check ]
|
needs: [ flake-check ]
|
||||||
|
container:
|
||||||
|
image: nixos/nix:2.33.0
|
||||||
env:
|
env:
|
||||||
NIX_CONFIG: extra-experimental-features = nix-command flakes
|
NIX_CONFIG: extra-experimental-features = nix-command flakes
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Install Nix
|
|
||||||
run: |
|
|
||||||
curl -L https://nixos.org/nix/install | sh
|
|
||||||
. /home/runner/.nix-profile/etc/profile.d/nix.sh
|
|
||||||
nix --version
|
|
||||||
- name: Build ISO
|
- name: Build ISO
|
||||||
run: |
|
run: |
|
||||||
nix --version
|
nix --version
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue