mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-14 13:58:40 +03:00
28 lines
607 B
YAML
28 lines
607 B
YAML
name: update lock files
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 1'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: install nix
|
|
uses: cachix/install-nix-action@v15
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
- name: update flake.lock
|
|
run: |
|
|
nix flake update
|
|
- name: check it builds
|
|
run: |
|
|
nix build
|
|
- name: commit changes
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
author_name: Catala nix updated
|
|
author_email: nixer@catala
|
|
message: "update lock files"
|