mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
23 lines
473 B
YAML
23 lines
473 B
YAML
name: build_jeeves
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
name: build-${{ matrix.system }}
|
|
runs-on: self-hosted
|
|
strategy:
|
|
matrix:
|
|
system:
|
|
- "bob"
|
|
- "jeeves"
|
|
- "muninn"
|
|
- "rhapsody-in-green"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build default package
|
|
run: "nixos-rebuild build --flake ./#${{ matrix.system }} --accept-flake-config"
|