Spaces:
Running
Running
Create hf_sync.yml
Browse files
.github/workflows/hf_sync.yml
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Sync to Hugging Face Space
|
| 2 |
+
|
| 3 |
+
on:
|
| 4 |
+
push:
|
| 5 |
+
branches:
|
| 6 |
+
- main
|
| 7 |
+
|
| 8 |
+
jobs:
|
| 9 |
+
sync:
|
| 10 |
+
runs-on: ubuntu-latest
|
| 11 |
+
|
| 12 |
+
steps:
|
| 13 |
+
- name: Checkout GitHub Repository
|
| 14 |
+
uses: actions/checkout@v3
|
| 15 |
+
with:
|
| 16 |
+
fetch-depth: 0 # Fetch the entire history to avoid shallow clone issues
|
| 17 |
+
|
| 18 |
+
- name: Install Git LFS
|
| 19 |
+
run: |
|
| 20 |
+
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
|
| 21 |
+
sudo apt-get install git-lfs
|
| 22 |
+
git lfs install
|
| 23 |
+
|
| 24 |
+
- name: Configure Git
|
| 25 |
+
run: |
|
| 26 |
+
git config --global user.name "GitHub Actions Bot"
|
| 27 |
+
git config --global user.email "actions@github.com"
|
| 28 |
+
|
| 29 |
+
- name: Push to Hugging Face
|
| 30 |
+
env:
|
| 31 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 32 |
+
run: |
|
| 33 |
+
git remote add huggingface https://user:${HF_TOKEN}@huggingface.co/spaces/SE-Arena/Software-Engineering-Arena
|
| 34 |
+
git fetch huggingface
|
| 35 |
+
git push huggingface main --force
|