2023-09-10 20:51:13 +02:00
|
|
|
name: Nix
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
secrets:
|
|
|
|
PAT:
|
|
|
|
required: true
|
2022-05-21 12:39:15 +02:00
|
|
|
|
|
|
|
jobs:
|
2023-09-10 20:51:13 +02:00
|
|
|
update:
|
|
|
|
name: wlroots
|
2022-05-21 12:39:15 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v3
|
2022-05-31 10:47:56 +02:00
|
|
|
with:
|
2023-09-10 20:51:13 +02:00
|
|
|
token: ${{ secrets.PAT }}
|
|
|
|
|
2022-05-21 12:39:15 +02:00
|
|
|
- name: Install nix
|
2023-09-10 20:51:13 +02:00
|
|
|
uses: cachix/install-nix-action@v22
|
2022-05-21 12:39:15 +02:00
|
|
|
with:
|
2022-11-15 11:23:46 +01:00
|
|
|
install_url: https://nixos.org/nix/install
|
2022-05-21 12:39:15 +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-21 12:39:15 +02:00
|
|
|
experimental-features = nix-command flakes
|
2023-09-10 20:51:13 +02:00
|
|
|
|
|
|
|
- name: Update lockfile
|
|
|
|
run: nix/update-wlroots.sh
|
|
|
|
|
|
|
|
- name: Commit
|
|
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
2022-07-31 14:19:28 +02:00
|
|
|
with:
|
2023-09-10 20:51:13 +02:00
|
|
|
commit_message: "[gha] Nix: update wlroots"
|