aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/nix-update-inputs.yml
blob: 2de1cf9f7b5390334188fe984c24e8fda83df17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 }}

      - name: Install nix
        uses: cachix/install-nix-action@v22
        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 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