2023-10-03 11:11:17 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
jobs:
|
2023-12-27 13:26:04 +00:00
|
|
|
cache:
|
|
|
|
name: Build and cache nix artifacts
|
2023-10-03 11:11:17 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: cachix/install-nix-action@v20
|
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- uses: cachix/cachix-action@v12
|
|
|
|
with:
|
|
|
|
name: ashhhleyyy
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
- run: GC_DONT_GC=1 nix build --show-trace --log-lines 10000 --fallback '.#nixosConfigurations.alex.config.system.build.toplevel'
|