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:
commit
223a4e3b2c
8 changed files with 2754 additions and 0 deletions
20
.github/workflows/update.yml
vendored
Normal file
20
.github/workflows/update.yml
vendored
Normal 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"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue