Some checks failed
Buill NixOS Configurations / Build-NixOS-Configurations (carbon) (push) Failing after 6s
Buill NixOS Configurations / Build-NixOS-Configurations (git) (push) Failing after 5s
Buill NixOS Configurations / Build-NixOS-Configurations (gospel) (push) Failing after 5s
Buill NixOS Configurations / Build-NixOS-Configurations (node) (push) Failing after 5s
23 lines
661 B
YAML
23 lines
661 B
YAML
name: Buill NixOS Configurations
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build-NixOS-Configurations:
|
|
runs-on: nix-builder
|
|
strategy:
|
|
matrix:
|
|
system:
|
|
- "carbon"
|
|
- "git"
|
|
- "gospel"
|
|
- "node"
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- run: |
|
|
echo 'Building configuration for ${{ matrix.system }}'
|
|
nix build .#nixosConfigurations.${{ matrix.system }}.config.system.build.toplevel
|
|
- name: Push build to attic
|
|
run: |
|
|
attic login gospel https://attic.kilonull.com ${{ secrets.ATTIC_PUSH_SECRET }}
|
|
attic push gospel ./result
|