2024-09-30 14:27:50 +00:00
|
|
|
name: "build demo images"
|
|
|
|
on:
|
2024-10-01 11:49:33 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - release
|
2024-09-30 14:27:50 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build NixOS images
|
2024-09-30 15:16:39 +00:00
|
|
|
runs-on: nixos
|
2024-09-30 14:27:50 +00:00
|
|
|
steps:
|
2024-09-30 15:44:42 +00:00
|
|
|
- name: install node
|
2024-09-30 15:57:06 +00:00
|
|
|
run: nix-env -iA nixpkgs.nodejs_20
|
2024-09-30 14:27:50 +00:00
|
|
|
- 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"
|