Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/bump-llamacpp.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Bump llama.cpp

run-name: "Bump llama.cpp${{ inputs.tag && format(' to {0}', inputs.tag) || '' }}"

permissions:
actions: write
contents: write
pull-requests: write

Expand Down Expand Up @@ -44,8 +45,6 @@ jobs:
COMMIT_MSG: ${{ steps.bump.outputs.commit-msg }}
run: |
TAG=$(echo "$COMMIT_MSG" | grep -oP '[^/]+(?=\)$)')
gh api -X PATCH "/repos/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" \
-f name="Bump llama.cpp to $TAG"
BRANCH="bump-llamacpp-$TAG"
git checkout -b "$BRANCH"
git commit --signoff -m "$COMMIT_MSG"
Expand Down
Loading