Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
fengzch-das
nunchaku
Commits
3bcc2d43
Unverified
Commit
3bcc2d43
authored
Aug 13, 2025
by
Muyang Li
Committed by
GitHub
Aug 13, 2025
Browse files
chore: fix the wheel hf uploading (#599)
* fix the hf uploading * use conda python
parent
433f0b22
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
.github/workflows/release-build.yaml
.github/workflows/release-build.yaml
+3
-6
No files found.
.github/workflows/release-build.yaml
View file @
3bcc2d43
...
...
@@ -92,7 +92,7 @@ jobs:
run
:
|
pip install huggingface_hub
for whl in dist/*.whl; do
hf upload nunchaku-tech/nunchaku "$whl"
.
hf upload nunchaku-tech/nunchaku "$whl"
done
-
name
:
Clean up
if
:
always()
...
...
@@ -141,16 +141,13 @@ jobs:
prerelease
:
false
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Set up Python
uses
:
actions/setup-python@v5
with
:
python-version
:
'
3.12'
-
name
:
Upload wheels to HuggingFace Hub
shell
:
cmd
env
:
HF_TOKEN
:
${{ secrets.HF_WHEEL_UPLOAD_TOKEN }}
run
:
|
call C:\Users\muyangl\miniconda3\condabin\activate.bat activate
pip install huggingface_hub
for %%w in (dist\*.whl) do (
hf upload nunchaku-tech/nunchaku "%%w"
.
hf upload nunchaku-tech/nunchaku "%%w"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment