Rain Poo
commited on
Create main.yml
Browse files- .github/workflows/main.yml +28 -0
.github/workflows/main.yml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Sync to Hugging Face hub
|
2 |
+
on:
|
3 |
+
push:
|
4 |
+
branches: [main]
|
5 |
+
workflow_dispatch:
|
6 |
+
|
7 |
+
jobs:
|
8 |
+
sync-to-hub:
|
9 |
+
runs-on: ubuntu-latest
|
10 |
+
steps:
|
11 |
+
- uses: actions/checkout@v2
|
12 |
+
with:
|
13 |
+
fetch-depth: 0
|
14 |
+
|
15 |
+
- name: Login to Hugging Face
|
16 |
+
env:
|
17 |
+
HF_TOKEN: ${{ secrets.HF }}
|
18 |
+
run: |
|
19 |
+
pip install huggingface_hub
|
20 |
+
huggingface-cli login --token $HF
|
21 |
+
|
22 |
+
- name: Push to Hugging Face Spaces
|
23 |
+
env:
|
24 |
+
HF_TOKEN: ${{ secrets.HF }}
|
25 |
+
run: |
|
26 |
+
huggingface-cli upload-space RainPoo/Automated-Interview-Filtering \
|
27 |
+
--commit-message "Automated deployment from GitHub" \
|
28 |
+
--create-if-not-exists
|