feat: Replaces nix dependencies from container
This commit is contained in:
parent
b828dcd15f
commit
2d771638b4
1 changed files with 10 additions and 4 deletions
14
.github/workflows/kiosk-iso.yml
vendored
14
.github/workflows/kiosk-iso.yml
vendored
|
|
@ -8,26 +8,32 @@ on:
|
|||
jobs:
|
||||
flake-check:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: nixos/nix:2.33.0
|
||||
env:
|
||||
NIX_CONFIG: extra-experimental-features = nix-command flakes
|
||||
steps:
|
||||
- name: Checkout
|
||||
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
|
||||
run: nix flake check -L
|
||||
|
||||
build-iso:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ flake-check ]
|
||||
container:
|
||||
image: nixos/nix:2.33.0
|
||||
env:
|
||||
NIX_CONFIG: extra-experimental-features = nix-command flakes
|
||||
steps:
|
||||
- name: Checkout
|
||||
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
|
||||
run: |
|
||||
nix --version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue