fix(hosts/server-main-elis): Fix zwavejs2mqtt by upgrading it #145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Cache π | |
'on': | |
push: | |
branches: | |
- main | |
- cache | |
paths: | |
- '**.nix' | |
- '**.age' | |
- 'flake.lock' | |
concurrency: | |
group: ci-${{ github.ref }}-cache | |
cancel-in-progress: true | |
jobs: | |
cache: | |
name: Cache π | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
hostname: | |
- laptop-private-elis | |
- server-main-elis | |
- server-sparv | |
- vps06 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v12 | |
- uses: DeterminateSystems/magic-nix-cache-action@v7 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: etu | |
extraPullNames: 'nix-community' | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
# Build systems. | |
- name: Build system derivation | |
run: 'nix build .#nixosConfigurations.${{ matrix.hostname }}.config.system.build.toplevel' |