add monthly flake update. #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "update flake inputs" | |
on: | |
schedule: | |
- "53 15 18 * *" # AEST 1:53 am on 18th day each month | |
workflow_dispatch: | |
jobs: | |
flake-update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v20 | |
- uses: cachix/cachix-action@v12 | |
with: { name: pac-nix, authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' } | |
- run: | | |
git pull | |
git config user.name 'github-actions[bot]' | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
- run: | | |
nix flake update --commit-lock-file | |
- run: | | |
nix flake build .#all -Lv | |
- run: git push |