Hyprland/.github/workflows/nix-update.yaml

23 lines
597 B
YAML
Raw Normal View History

2022-05-26 10:54:10 +02:00
name: "Nix: update lockfile"
2022-06-01 23:42:05 +02:00
on: [push, workflow_dispatch]
2022-05-26 10:54:10 +02:00
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install nix
2022-11-15 11:23:46 +01:00
uses: cachix/install-nix-action@v18
2022-05-26 10:54:10 +02:00
with:
2022-11-15 11:23:46 +01:00
install_url: https://nixos.org/nix/install
2022-05-26 10:54:10 +02:00
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
- name: Update lockfile
run: nix/update-inputs.sh
2022-05-26 10:54:10 +02:00
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "[gha] bump flake inputs"