Spaces:
Running
Running
Vamshi Pokala Claude Sonnet 4.6 commited on
Commit ·
1961f6f
1
Parent(s): ac6b0c0
fix: trigger HF Spaces sync on every push to main
Browse filesRemoved the paths filter from sync-to-spaces.yml. The filter was too
restrictive — changes to README.md and other files outside the listed
paths were silently skipping the sync. Now any PR merge to main will
always push the latest code to HF Spaces.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
.github/workflows/sync-to-spaces.yml
CHANGED
|
@@ -3,11 +3,6 @@ name: Sync to Hugging Face Spaces
|
|
| 3 |
on:
|
| 4 |
push:
|
| 5 |
branches: [main]
|
| 6 |
-
paths:
|
| 7 |
-
- "spaces/**"
|
| 8 |
-
- "src/**"
|
| 9 |
-
- "data/sample/**"
|
| 10 |
-
- "config.yaml"
|
| 11 |
|
| 12 |
workflow_dispatch:
|
| 13 |
|
|
|
|
| 3 |
on:
|
| 4 |
push:
|
| 5 |
branches: [main]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
workflow_dispatch:
|
| 8 |
|