diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2024-10-04 17:29:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-04 17:29:48 +0200 |
commit | 46c589dc27deb101b00d032df736caf559fa05bd (patch) | |
tree | c98b2a5309fba57966c32ea3d9656211d56c6150 /.github/workflows/main.yml | |
parent | b74758202ce71bae2c18a47ea00ccb62aab9e941 (diff) | |
download | dots-46c589dc27deb101b00d032df736caf559fa05bd.tar.gz dots-46c589dc27deb101b00d032df736caf559fa05bd.zip |
Add auto rebuild
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..c9a0103 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: "Rebuild system" + +on: + schedule: + - cron: "0 8 * * 0" + +jobs: + fetcher: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: "Install Nix ❄️" + uses: cachix/install-nix-action@v18 + with: + extra_nix_config: | + substituters = https://pn.cachix.org/ https://cache.nixos.org/ + trusted-public-keys = pn.cachix.org-1:KC0hqPVkcs7WUSv8xCkUNzrpDVKYh8TwZIqvhASvbJM= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= + + - name: Cachix + uses: cachix/cachix-action@v15 + with: + name: pn + + - name: "Build" + id: fetcher + run: nix build .#nixosConfigurations.t14 |