Update model configurations and enhance workflow settings in publish_…#495
Update model configurations and enhance workflow settings in publish_…#495
Conversation
…to_hf.yml Signed-off-by: jakmro <[email protected]>
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions workflow that publishes model artifacts to Hugging Face by adjusting the built-in model configuration list and tweaking execution settings for the publish job.
Changes:
- Reordered/updated
MODELS_CONFIGentries (incl. movingLiquidAI/LFM2-8B-A1Band ensuring valid JSON list formatting). - Changed the publish job runner from
macos-latesttomacos-latest-xlarge. - Added
HF_HUB_DISABLE_XET=1to the publish step environment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| jobs: | ||
| publish: | ||
| runs-on: macos-latest | ||
| runs-on: macos-latest-xlarge |
There was a problem hiding this comment.
runs-on: macos-latest-xlarge is not a standard GitHub-hosted runner label (at least compared to the commonly supported macos-latest / macos-14 / macos-13 labels). If this repo/org doesn’t have a runner with that exact label, this workflow will never start. Consider reverting to a known macOS label or switching to the documented larger-runner label(s)/self-hosted runner labels used elsewhere in this repo.
| runs-on: macos-latest-xlarge | |
| runs-on: macos-latest |
…to_hf.yml