Spaces:
Build error
Build error
Claude commited on
fix(ci): match HuggingFace Space name case (IIIF-Studio, not iiif-studio)
Browse filesThe Space URL is Ma-Ri-Ba-Ku/IIIF-Studio (uppercase) but the deploy
workflow was pushing to iiif-studio (lowercase). HuggingFace git
URLs are case-sensitive, which could cause the deploy push to fail
silently.
https://claude.ai/code/session_01WWohTtw2CxGRawmpH1tyrY
.github/workflows/deploy-hf.yml
CHANGED
|
@@ -35,5 +35,5 @@ jobs:
|
|
| 35 |
run: |
|
| 36 |
git config user.email "github-actions[bot]@users.noreply.github.com"
|
| 37 |
git config user.name "github-actions[bot]"
|
| 38 |
-
git remote add hf https://Ma-Ri-Ba-Ku:${HF_TOKEN}@huggingface.co/spaces/Ma-Ri-Ba-Ku/
|
| 39 |
git push hf main --force
|
|
|
|
| 35 |
run: |
|
| 36 |
git config user.email "github-actions[bot]@users.noreply.github.com"
|
| 37 |
git config user.name "github-actions[bot]"
|
| 38 |
+
git remote add hf https://Ma-Ri-Ba-Ku:${HF_TOKEN}@huggingface.co/spaces/Ma-Ri-Ba-Ku/IIIF-Studio
|
| 39 |
git push hf main --force
|