Skip to content

correct pipline errors #7

correct pipline errors

correct pipline errors #7

Workflow file for this run

name: Sync with Hugging Face
on:
push:
branches:
- master
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Git LFS
run: sudo apt-get install git-lfs
- name: Install Hugging Face Hub
run: pip install huggingface_hub
- name: Sync to Hugging Face
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_USERNAME: ${{ secrets.HF_USERNAME }}
run: |
git lfs install
git remote add huggingface https://huggingface.co/${{ secrets.HF_USERNAME }}:${{ secrets.HF_TOKEN }}@huggingface.co/${{ secrets.HF_USERNAME }}/LongRoPE
git push huggingface master:main --force