14 lines
563 B
YAML
14 lines
563 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: native
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
echo ${{ secrets.SSH_KEY }} > $PWD/.ssh/id_rsa
|
|
export NIX_SSHOPTS="-i $PWD/.ssh/id_rsa"
|
|
nix flake update
|
|
- run: nix build .#nixosConfigurations.orbi.config.system.build.toplevel
|
|
- run: nix build .#nixosConfigurations.cream.config.system.build.toplevel
|
|
- run: nix build .#nixosConfigurations.cherry.config.system.build.toplevel
|
|
- run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel
|