Skip to content

Update sources

Update sources #109

Workflow file for this run

name: Update sources
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
jobs:
update:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Update sources
run: |
chmod +x update.sh
./update.sh
- name: Add & Commit
uses: EndBug/[email protected]
with:
default_author: github_actions
message: "Update sources"
add: "sources/*.json"