Skip to content

Commit

Permalink
added updates to llama cpp as a cron job
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDunn committed Jan 12, 2024
1 parent 355fcde commit 125f7c6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/update-llama-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update llama cpp nightly
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch: {}

permissions:
pull-requests: write
contents: read

jobs:
update:
name: Update llama cpp
steps:
- uses: actions/checkout@v3
name: Checkout latest
- name: create branch
run: git checkout -b update-llama-cpp-$(date -I)
- name: update submodules
run: git submodule update --remote
- name: commit
run: git commit -am "updated llama.cpp"
- name: push
run: git push
- name: create pr
run: gh pr create --fill

0 comments on commit 125f7c6

Please sign in to comment.