-
-
Notifications
You must be signed in to change notification settings - Fork 40
39 lines (35 loc) · 1.2 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Two Tracks for SPM pinning
on: [push]
permissions:
contents: write
jobs:
run-two-tracks:
runs-on: ubuntu-latest
steps:
- name: Checkout ggerganov/llama.cpp
uses: actions/checkout@v4
with:
repository: ggerganov/llama.cpp
- name: Get current llama.cpp hash
run: |
echo "LLAMA_COMMIT_HASH=$( git rev-parse HEAD )" >> $GITHUB_ENV
- name: Checkout main
uses: actions/checkout@v4
- name: Pinning SPM
run: |
export FROM='"https://github.com/ggerganov/llama.cpp/", branch: "master"'
export TO='"https://github.com/ggerganov/llama.cpp/", revision: "${{ env.LLAMA_COMMIT_HASH }}"'
sed -i -e "s|$FROM|$TO|" Package.swift
- name: Push changes to pinned branch
run: |
if git show-ref -q --heads pinned
then
git switch pinned
git pull origin main:pinned
else
git switch -c pinned
fi
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
git commit -am "pin Package.swift"
git push -u -f origin pinned