File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,15 @@ jobs:
2424 git config --global user.email 'github-actions[bot]@users.noreply.github.com'
2525
2626 - name : Add upstream remote
27+ env :
28+ GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
2729 run : |
2830 git remote add upstream https://github.com/ggml-org/llama.cpp.git
2931 git fetch upstream --tags # Fetch tags from upstream
3032
3133 - name : Sync master with latest release
3234 env :
33- GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
35+ GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
3436 run : |
3537 git checkout master
3638 LATEST_RELEASE=$(git describe --tags --abbrev=0 upstream/master)
3941
4042 - name : Rebase dev onto master
4143 env :
42- GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
44+ GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
4345 run : |
4446 git checkout dev
4547 echo "Attempting to rebase dev onto master..."
5355
5456 - name : Create version tag
5557 env :
56- GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
58+ GITHUB_TOKEN : ${{ secrets.PAT_SERVICE_ACCOUNT }}
5759 run : |
5860 git checkout master
5961 COMMIT_COUNT=$(git rev-list --count HEAD)
You can’t perform that action at this time.
0 commit comments