Skip to content

Commit 7886c38

Browse files
authored
ci: make sure to include convert_hf_to_gguf.py in output
1 parent e307a4d commit 7886c38

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: .github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
$distPath = if ("${{ github.event.inputs.build_type }}" -eq "RELEASE") { "build\release\dist" } else { "build\dev\dist" }
6464
New-Item -ItemType Directory -Force -Path "$distPath\src\gguf-py"
6565
Copy-Item -Path "src\gguf-py\*" -Destination "$distPath\src\gguf-py" -Recurse
66+
Copy-Item -Path "src\convert_hf_to_gguf.py" -Destination "$distPath\src"
6667
Copy-Item -Path "src\convert_lora_to_gguf.py" -Destination "$distPath\src"
6768
Copy-Item -Path "src\convert_lora_to_ggml.py" -Destination "$distPath\src"
6869
@@ -72,6 +73,7 @@ jobs:
7273
distPath=$(if [ "${{ github.event.inputs.build_type }}" = "RELEASE" ]; then echo "build/release/dist"; else echo "build/dev/dist"; fi)
7374
mkdir -p $distPath/src/gguf-py
7475
cp -R src/gguf-py/* $distPath/src/gguf-py/
76+
cp src\convert_hf_to_gguf.py $distPath/src/
7577
cp src/convert_lora_to_gguf.py $distPath/src/
7678
cp src/convert_lora_to_ggml.py $distPath/src/
7779

0 commit comments

Comments
 (0)