File size: 994 Bytes
a6948ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/usr/bin/env bash
# Force-push current branch to Hugging Face Space main, rewriting plot PNGs to Git LFS
# first so the Hub accepts the pack (raw PNG blobs are rejected).
#
# git fetch origin && git checkout main && git pull
# export HF_TOKEN=hf_... # or use git credential for huggingface.co
# ./scripts/sync_hf_space.sh
#
set -euo pipefail
ROOT="$(git rev-parse --show-toplevel)"
cd "$ROOT"
HF_USER="${HF_USER:-kaori02}"
HF_SPACE="${HF_SPACE:-arm-gym}"
if [[ -n "${HF_TOKEN:-}" ]]; then
REMOTE_URL="https://${HF_USER}:${HF_TOKEN}@huggingface.co/spaces/${HF_USER}/${HF_SPACE}"
else
REMOTE_URL="https://huggingface.co/spaces/${HF_USER}/${HF_SPACE}"
fi
REF=$(git symbolic-ref -q HEAD) || { echo "error: need a branch (detached HEAD not supported)" >&2; exit 1; }
git lfs install
git lfs migrate import --include="colab/results/plots/*.png" --include-ref="$REF"
echo "[sync_hf_space] pushing HEAD -> ${HF_USER}/${HF_SPACE}:main (force)"
git push --force "$REMOTE_URL" HEAD:main
|