Claude commited on
Commit
c7f9d01
·
unverified ·
1 Parent(s): f80bbb5

fix(ci): match HuggingFace Space name case (IIIF-Studio, not iiif-studio)

Browse files

The 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

Files changed (1) hide show
  1. .github/workflows/deploy-hf.yml +1 -1
.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/iiif-studio
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