diff --git a/.github/workflows/create-pr-sync-remote.yml b/.github/workflows/create-pr-sync-remote.yml index 2c0c759..696214f 100644 --- a/.github/workflows/create-pr-sync-remote.yml +++ b/.github/workflows/create-pr-sync-remote.yml @@ -19,11 +19,6 @@ jobs: fetch-depth: 0 token: ${{ secrets.PAT_SERVICE_ACCOUNT }} - - name: Apply patch file - run: | - cd llama.cpp - git apply ../patches/0001-Add-API-query-buffer-size.patch - - name: Configure Git run: | git config --global user.name 'github-actions[bot]' @@ -48,3 +43,8 @@ jobs: pr_body="This PR updates the llama.cpp submodule to the latest release: $release_name." gh pr create --title "$pr_title" --body "$pr_body" --head $branch_name --base main --reviewer vansangpfiev + + - name: Apply patch file + run: | + cd llama.cpp + git apply ../patches/0001-Add-API-query-buffer-size.patch \ No newline at end of file