name: Sync to Hugging Face hub on: push: branches: [main] # to run this workflow manually from the Actions tab workflow_dispatch: jobs: sync-to-hub: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 lfs: true - name: LFS Install run: git lfs install - name: LFS Track run: git lfs track *.jpeg - name: reset commit run: git filter-branch --force --index-filter "git rm --cached --ignore-unmatch *.jpeg" --prune-empty --tag-name-filter cat -- --all - name: Checkout LFS objects run: git lfs checkout - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Push to hub env: HF_TOKEN: ${{ secrets.HUGGINGFACE }} run: git push https://valbuc:$HUGGINGFACE@huggingface.co/spaces/valbuc/GenCeption main