Skip to content

Commit

Permalink
pull latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
harrys522 committed May 20, 2024
2 parents 464027c + 9df8aa5 commit 30d0abf
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/nix-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---

on:
pull_request:
push:
branches:
- main
- dev

jobs:
build:
name: Build Nix targets
runs-on: ubuntu-22.04
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v22
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v5
with:
ignore-missing-flake-lock: false
fail-mode: true
25 changes: 25 additions & 0 deletions .github/workflows/xnodeos-build-iso.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---

on:
push:
branches:
- main
- dev

jobs:
build:
name: Build XnodeOS ISO Image
runs-on: ubuntu-22.04
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: make iso
- name: Archive ISO Image as Build Artifact
uses: actions/upload-artifact@v4
with:
name: XnodeOS-x86_64.iso
path: result/iso/nixos.iso
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# xnode-os
# XnodeOS
XnodeOS is a modularised configurable operating-system for servers built on NixOS, you can find all of our nix flakes and modules here.

## building
Expand Down

0 comments on commit 30d0abf

Please sign in to comment.