mirror of
https://github.com/huggingface/diffusers.git
synced 2026-01-27 17:22:53 +03:00
31 lines
613 B
YAML
31 lines
613 B
YAML
name: Update Diffusers metadata
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- update_diffusers_metadata*
|
|
|
|
jobs:
|
|
update_metadata:
|
|
runs-on: ubuntu-22.04
|
|
defaults:
|
|
run:
|
|
shell: bash -l {0}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Setup environment
|
|
run: |
|
|
pip install --upgrade pip
|
|
pip install datasets pandas
|
|
pip install .[torch]
|
|
|
|
- name: Update metadata
|
|
env:
|
|
HF_TOKEN: ${{ secrets.SAYAK_HF_TOKEN }}
|
|
run: |
|
|
python utils/update_metadata.py --commit_sha ${{ github.sha }}
|