17 lines
450 B
YAML
17 lines
450 B
YAML
name: "build demo images"
|
|
on:
|
|
workflow_dispatch:
|
|
# push:
|
|
# branches:
|
|
# - release
|
|
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"
|