2023-09-10 20:51:13 +02:00
|
|
|
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 }}
|
|
|
|
|
2023-09-13 18:06:49 +02:00
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2023-09-10 20:51:13 +02:00
|
|
|
- name: Update inputs
|
|
|
|
run: nix/update-inputs.sh
|
|
|
|
|
|
|
|
- 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
|
|
|
|
secrets: inherit
|