Skip to content
Open
Changes from all commits
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
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v5
with:
fetch-tags: 'true'
- name: Checkout llama.cpp repo
uses: actions/checkout@v5
with:
Expand All @@ -38,12 +40,12 @@ jobs:
repo-path: ./llama.cpp
- name: Fetch tags
run: |
git fetch --prune --prune-tags --depth=1 --no-recurse-submodules
git fetch --tags
- name: Determine own tag name
id: currenttag
uses: ./.github/actions/get-tag-name
with:
repo-path: .
run: |
BUILD_NUMBER="$(git tag -l | grep 'b*$' | sort -V)"
echo "name=${BUILD_NUMBER}" >> $GITHUB_OUTPUT
- name: Save tags
id: tags
run: |
Expand Down
Loading