zig-overlay/.github/workflows/update.yml
2022-08-22 19:43:49 -07:00

20 lines
557 B
YAML

name: update-sources
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
update-sources:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: ./update
- run: "git config user.email mitchellh@users.noreply.github.com"
- run: "git config user.name zig-overlay"
- run: "git add -A"
- run: "git commit -m 'update sources.json' | true"
- run: "git push -u origin main"