Spaces:
Runtime error
Runtime error
Vishnu commited on
new update
Browse files- .github/workflows/main.yml +18 -0
.github/workflows/main.yml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Sync to Hugging Face Hub
|
| 2 |
+
on:
|
| 3 |
+
push:
|
| 4 |
+
branches: [main]
|
| 5 |
+
|
| 6 |
+
jobs:
|
| 7 |
+
sync:
|
| 8 |
+
runs-on: ubuntu-latest
|
| 9 |
+
steps:
|
| 10 |
+
- uses: actions/checkout@v6
|
| 11 |
+
with:
|
| 12 |
+
fetch-depth: 0
|
| 13 |
+
lfs: true
|
| 14 |
+
- uses: huggingface/hub-sync@v0.1.3
|
| 15 |
+
with:
|
| 16 |
+
github_repo_id: vishnu0967/medsam-api-testing
|
| 17 |
+
huggingface_repo_id: vishnu0967/medsam-api-testing
|
| 18 |
+
hf_token: ${{ secrets.HF_TOKEN }}
|