2024-07-19 19:00:35 +02:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: native
|
|
|
|
steps:
|
2024-07-19 19:12:42 +02:00
|
|
|
- uses: actions/checkout@v4
|
2024-07-19 22:50:32 +02:00
|
|
|
- run: |
|
2024-07-20 00:04:43 +02:00
|
|
|
cat ${{ secrets.SSH_KEY }} > $PWD/.ssh/id_rsa
|
|
|
|
export NIX_SSHOPTS="-i $PWD/.ssh/id_rsa"
|
2024-07-19 22:50:32 +02:00
|
|
|
nix flake update
|
2024-07-19 21:55:40 +02:00
|
|
|
- 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
|