Skip to content

Commit

Permalink
Merge pull request #6 from Openmesh-Network/feature/github-workflow-f…
Browse files Browse the repository at this point in the history
…or-kexec-builds

When dev and main are updated, we need to release kexec resources
  • Loading branch information
jaesharp authored Jun 6, 2024
2 parents ff3c8c3 + 1dd286d commit 21ab17b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/xnodeos-build-kexec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---

on:
push:
branches:
- main
- dev

jobs:
build:
name: Build XnodeOS kexec Image and Support Files
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
- name: Build XnodeOS kexec Image
run: make kexec
- name: Archive kexec Archive as Build Artifact
uses: actions/upload-artifact@v4
with:
name: xnodeos-kexec-system-x86_64-linux.tar.xz
path: result/tarball/nixos-system-x86_64-linux.tar.xz

0 comments on commit 21ab17b

Please sign in to comment.