1
0
Fork 0
mirror of https://github.com/mitchellh/zig-overlay.git synced 2025-05-08 18:46:02 +03:00

Initial commit based on original arqv repository

This commit is contained in:
Mitchell Hashimoto 2022-08-22 15:56:44 -07:00
commit 223a4e3b2c
No known key found for this signature in database
GPG key ID: 523D5DC389D273BC
8 changed files with 2754 additions and 0 deletions

20
.github/workflows/update.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: update-sources
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
update-sources:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: cachix/install-nix-action@v12
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"