PixDLM / docs /RELEASE.md
WhynotHug's picture
Upload folder using huggingface_hub
ae4bb90 verified
|
Raw
History Blame Contribute Delete
815 Bytes

Release Checklist

Before uploading a public release:

  1. Run the private-path scanner:

    python scripts/check_release.py .
    
  2. Confirm no large local artifacts are included:

    find . -type f -size +50M
    
  3. Confirm auth tokens are not present:

    grep -R "hf_" . --exclude-dir=.git --exclude-dir=.cache
    
  4. Upload to HuggingFace with a token stored only in the environment:

    export HF_TOKEN=...
    python scripts/upload_to_hf.py --namespace WhynotHug
    unset HF_TOKEN
    
  5. Review the public pages:

The upload script updates cards, scripts, docs, and metadata without committing local data/, checkpoints/, outputs/, or logs/.