mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-04 19:06:01 +01:00
29 lines
880 B
YAML
29 lines
880 B
YAML
name: "Nix: update lockfile"
|
|
|
|
on: [push, workflow_dispatch]
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v3
|
|
- name: Install nix
|
|
uses: cachix/install-nix-action@v20
|
|
with:
|
|
install_url: https://nixos.org/nix/install
|
|
extra_nix_config: |
|
|
auto-optimise-store = true
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
experimental-features = nix-command flakes
|
|
- name: Update lockfile
|
|
run: nix/update-inputs.sh
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: hyprland
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- name: Build Waybar-Hyprland
|
|
run: nix build .#waybar-hyprland --print-build-logs
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "[gha] bump flake inputs"
|