Douze Baie
f612b5de23
Some checks failed
build demo images / Build NixOS images (push) Failing after 3m42s
16 lines
422 B
YAML
16 lines
422 B
YAML
name: "build demo images"
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build:
|
|
name: Build NixOS images
|
|
runs-on: nixos
|
|
steps:
|
|
- name: install node
|
|
run: nix-env -iA nixpkgs.nodejs_20
|
|
- name: checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: run generator
|
|
run: nix-shell -p nixos-generators --run "nixos-generate -c inventory/demo-configuration.nix -f proxmox-lxc"
|