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

44 lines
1.2 KiB
YAML
Raw Normal View History

name: "Nix update"
2022-05-26 10:54:10 +02:00
on:
schedule:
- cron: '0 0 * * *'
2022-05-26 10:54:10 +02:00
jobs:
update:
name: "inputs"
2022-05-26 10:54:10 +02:00
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
2022-05-26 10:54:10 +02:00
- name: Install nix
2023-03-01 09:05:54 +01:00
uses: cachix/install-nix-action@v20
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
2023-02-15 19:45:23 +01:00
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
2022-05-26 10:54:10 +02:00
experimental-features = nix-command flakes
2022-05-26 10:54:10 +02:00
- name: Update lockfile
2023-07-06 12:02:56 +02:00
run: nix/update-inputs.sh
- uses: cachix/cachix-action@v12
with:
name: hyprland
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build packages
run: nix flake check --print-build-logs --accept-flake-config
- name: Build Waybar-Hyprland
run: nix build .#waybar-hyprland --print-build-logs
2022-05-26 10:54:10 +02:00
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Nix: bump inputs"
commit_user_name: Mihai Fufezan
commit_user_email: fufexan@protonmail.com
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>