Spaces:
Running
Running
feat: action to debug app
Browse files
.github/workflows/sync_to_hub_debug.yml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Deploy to debug app
|
2 |
+
|
3 |
+
# to run this workflow manually from the Actions tab
|
4 |
+
workflow_dispatch:
|
5 |
+
|
6 |
+
jobs:
|
7 |
+
sync-to-hub-debug:
|
8 |
+
runs-on: ubuntu-latest
|
9 |
+
steps:
|
10 |
+
- uses: actions/checkout@v2
|
11 |
+
with:
|
12 |
+
fetch-depth: 0
|
13 |
+
- name: Push to hub
|
14 |
+
env:
|
15 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
16 |
+
run: git push --force https://boris:$HF_TOKEN@huggingface.co/spaces/flax-community/dalle-mini-debug main
|