mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-08 12:35:59 +01:00
29 lines
592 B
YAML
29 lines
592 B
YAML
|
name: Nix
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * *' # check daily
|
||
|
|
||
|
jobs:
|
||
|
update:
|
||
|
name: inputs
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Clone repository
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
token: ${{ secrets.PAT }}
|
||
|
|
||
|
- uses: DeterminateSystems/nix-installer-action@main
|
||
|
- name: Update inputs
|
||
|
run: nix flake update
|
||
|
|
||
|
- name: Commit
|
||
|
uses: stefanzweifel/git-auto-commit-action@v4
|
||
|
with:
|
||
|
commit_message: "[gha] Nix: update inputs"
|
||
|
|
||
|
update-build:
|
||
|
needs: update
|
||
|
uses: ./.github/workflows/nix-build.yml
|