Skip to content

Update

Update #113

Workflow file for this run

name: Update
on:
schedule:
- cron: '0 0 * * 5'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- name: Cachix
uses: cachix/cachix-action@v14
with:
name: tekila
extraPullNames: 'nix-community,hyprland,devenv,statix,deadnix'
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: true
- run: nix flake update
- run: nix build -L --no-link .#nixosConfigurations.desktek.config.system.build.toplevel
- run: nix eval --json ".#nixosConfigurations.desktek.config.system.build.toplevel.outPath" | sed 's/"\(.*\)"/\1/' | cachix push tekila
- run: nix build -L --no-link .#nixosConfigurations.frametek.config.system.build.toplevel
- run: nix eval --json ".#nixosConfigurations.frametek.config.system.build.toplevel.outPath" | sed 's/"\(.*\)"/\1/' | cachix push tekila
- run: nix build -L --no-link .#nixosConfigurations.servetek.config.system.build.toplevel
- run: nix eval --json ".#nixosConfigurations.servetek.config.system.build.toplevel.outPath" | sed 's/"\(.*\)"/\1/' | cachix push tekila
- uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: "Update dependencies"